From 56514e302ae582288406e192e2e226694f92c4a6 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 13 Jul 2020 14:07:14 +0200 Subject: [PATCH 01/28] Use now as basetime to set openFuturePeriods (not project.startDate) on dataset.reopen --- src/models/ProjectDataSet.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/models/ProjectDataSet.ts b/src/models/ProjectDataSet.ts index a38f7ce0..31c4e896 100644 --- a/src/models/ProjectDataSet.ts +++ b/src/models/ProjectDataSet.ts @@ -65,12 +65,13 @@ export default class ProjectDataSet { async reopen(options: { unapprovePeriod?: string } = {}): Promise { const { unapprovePeriod } = options; const dataSet = this.getDataSet(); - const { startDate, endDate } = this.project.getDates(); + const { endDate } = this.project.getDates(); + const now = moment(); const projectDb = new ProjectDb(this.project); const normalAttributes = this.getDefaultOpenAttributes(); const openAttributes: DataSetOpenAttributes = { dataInputPeriods: normalAttributes.dataInputPeriods.map(expandDataInputPeriod), - openFuturePeriods: Math.max(endDate.diff(startDate, "month") + 1, 0), + openFuturePeriods: Math.max(endDate.diff(now, "month") + 1, 0), expiryDays: 0, }; // Open all dataSet periods but only unapprove the given period From 3785623973838ba2603ff27561cce68d3062d5bd Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 13 Jul 2020 14:08:35 +0200 Subject: [PATCH 02/28] Set openingDates to current time for projects in the future (target-only) --- src/models/ProjectDb.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/models/ProjectDb.ts b/src/models/ProjectDb.ts index d9688c28..bffc3420 100644 --- a/src/models/ProjectDb.ts +++ b/src/models/ProjectDb.ts @@ -161,17 +161,19 @@ export default class ProjectDb { getDataSetOpenAttributes(dataSetType: DataSetType): DataSetOpenAttributes { const { startDate, endDate } = this.project.getDates(); + const now = moment(); const projectOpeningDate = startDate; const projectClosingDate = startDate .clone() .add(1, "month") .endOf("month"); + const targetOpeningDate = moment.min(projectOpeningDate, now); switch (dataSetType) { case "target": { const targetPeriods = getMonthsRange(startDate, endDate).map(date => ({ period: { id: date.format("YYYYMM") }, - openingDate: toISOString(projectOpeningDate), + openingDate: toISOString(targetOpeningDate), closingDate: toISOString(projectClosingDate), })); From f3b1ca536b3b81d856fa09faf53e9ef2ffd78c66 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 13 Jul 2020 14:14:27 +0200 Subject: [PATCH 03/28] Change sharing step description --- .travis.yml | 2 +- i18n/en.pot | 6 +++--- src/pages/project-wizard/ProjectWizard.tsx | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3a40d80a..797bd34d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ install: script: - yarn wait-on http-get://localhost:8080 - curl -F file=@project-monitoring-app.zip -X POST -u "$CYPRESS_DHIS2_AUTH" "http://localhost:8080/api/apps" - - CYPRESS_EXTERNAL_API=http://localhost:8080 CYPRESS_ROOT_URL=http://localhost:8080 xvfb-run --auto-servernum --server-num=1 --server-args="-screen 0 1024x768x24" yarn cy:e2e:run --browser chrome --record --key ae48c13f-96a1-4850-b8b2-d5329b3c4813 + - CYPRESS_EXTERNAL_API=http://localhost:8080 CYPRESS_ROOT_URL=http://localhost:8080 yarn cy:e2e:run --record --key ae48c13f-96a1-4850-b8b2-d5329b3c4813 - kill $(jobs -p) || true addons: apt: diff --git a/i18n/en.pot b/i18n/en.pot index cb2daf4c..eae16546 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2020-07-06T21:07:30.089Z\n" -"PO-Revision-Date: 2020-07-06T21:07:30.089Z\n" +"POT-Creation-Date: 2020-07-13T12:14:14.865Z\n" +"PO-Revision-Date: 2020-07-13T12:14:14.865Z\n" msgid "Data Entry" msgstr "" @@ -546,7 +546,7 @@ msgstr "" msgid "Selection of MER Indicators" msgstr "" -msgid "Define sharing settings for metadata of the project." +msgid "Define Sharing settings for project data." msgstr "" msgid "Summary and Save" diff --git a/src/pages/project-wizard/ProjectWizard.tsx b/src/pages/project-wizard/ProjectWizard.tsx index b46ddcc2..b6f70e49 100644 --- a/src/pages/project-wizard/ProjectWizard.tsx +++ b/src/pages/project-wizard/ProjectWizard.tsx @@ -143,7 +143,7 @@ class ProjectWizardImpl extends React.Component { key: "sharing", label: i18n.t("Sharing"), component: SharingStep, - description: i18n.t("Define sharing settings for metadata of the project."), + description: i18n.t("Define Sharing settings for project data."), }, { key: "save", From 365a668fb0f77c822d07cb04e8335ae8cd70b56d Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Tue, 14 Jul 2020 10:12:23 +0200 Subject: [PATCH 04/28] Abstract indicators steps with props --- .../DataElementsSelectionStep.tsx | 23 +++++++++++++++++++ .../steps/data-elements/DataElementsStep.tsx | 20 +++++++--------- .../disaggregation/DisaggregationStep.tsx | 16 +++++++++++++ .../steps/mer-selection/MerSelectionStep.tsx | 23 +++++++++++++++++++ src/models/Project.ts | 2 +- src/models/dataElementsSet.ts | 6 +++++ src/pages/project-wizard/ProjectWizard.tsx | 22 ++++++++++-------- src/pages/project-wizard/help-texts.tsx | 1 + 8 files changed, 90 insertions(+), 23 deletions(-) create mode 100644 src/components/steps/data-elements-selection/DataElementsSelectionStep.tsx create mode 100644 src/components/steps/disaggregation/DisaggregationStep.tsx create mode 100644 src/components/steps/mer-selection/MerSelectionStep.tsx diff --git a/src/components/steps/data-elements-selection/DataElementsSelectionStep.tsx b/src/components/steps/data-elements-selection/DataElementsSelectionStep.tsx new file mode 100644 index 00000000..7fdd3fef --- /dev/null +++ b/src/components/steps/data-elements-selection/DataElementsSelectionStep.tsx @@ -0,0 +1,23 @@ +import React from "react"; +import { StepProps } from "../../../pages/project-wizard/ProjectWizard"; +import DataElementsStep, { DataElementsStepProps } from "../data-elements/DataElementsStep"; + +const DataElementsSelectionStep: React.FC = props => { + const { project } = props; + const getSelection: DataElementsStepProps["onSelect"] = React.useCallback( + (sectorId, dataElementIds) => { + return project.updateDataElementsSelection(sectorId, dataElementIds); + }, + [project] + ); + + return ( + + ); +}; + +export default React.memo(DataElementsSelectionStep); diff --git a/src/components/steps/data-elements/DataElementsStep.tsx b/src/components/steps/data-elements/DataElementsStep.tsx index 5e0c0def..bce26e39 100644 --- a/src/components/steps/data-elements/DataElementsStep.tsx +++ b/src/components/steps/data-elements/DataElementsStep.tsx @@ -2,13 +2,16 @@ import React, { useState } from "react"; import { StepProps } from "../../../pages/project-wizard/ProjectWizard"; import DataElementsTable from "./DataElementsTable"; import Sidebar from "./Sidebar"; +import { Id } from "../../../types/d2-api"; +import DataElementsSet, { ProjectSelection } from "../../../models/dataElementsSet"; -interface DataElementsStepProps extends StepProps { - type: "mainSelection" | "merSelection"; +export interface DataElementsStepProps extends StepProps { + onSelect(sectorId: Id, dataElementIds: Id[]): ProjectSelection; + dataElementsSet: DataElementsSet; } const DataElementsStep: React.FC = props => { - const { onChange, project, type } = props; + const { onChange, project, dataElementsSet, onSelect } = props; const menuItems = React.useMemo( () => project.sectors.map(sector => ({ id: sector.id, text: sector.displayName })), [project] @@ -16,22 +19,15 @@ const DataElementsStep: React.FC = props => { const [sectorId, setSectorId] = useState(menuItems.length > 0 ? menuItems[0].id : ""); const onSelectionChange = React.useCallback( - dataElementIds => { + (dataElementIds: Id[]) => { if (!sectorId) return {}; - const res = - type === "mainSelection" - ? project.updateDataElementsSelection(sectorId, dataElementIds) - : project.updateDataElementsMERSelection(sectorId, dataElementIds); - const { selectionInfo, project: projectUpdated } = res; + const { selectionInfo, project: projectUpdated } = onSelect(sectorId, dataElementIds); onChange(projectUpdated); return selectionInfo; }, [project, sectorId] ); - const dataElementsSet = - type === "mainSelection" ? project.dataElementsSelection : project.dataElementsMER; - if (!sectorId) return null; return ( diff --git a/src/components/steps/disaggregation/DisaggregationStep.tsx b/src/components/steps/disaggregation/DisaggregationStep.tsx new file mode 100644 index 00000000..5f41650b --- /dev/null +++ b/src/components/steps/disaggregation/DisaggregationStep.tsx @@ -0,0 +1,16 @@ +import React from "react"; +import { Card, CardContent } from "@material-ui/core"; +import { StepProps } from "../../../pages/project-wizard/ProjectWizard"; +import { useAppContext } from "../../../contexts/api-context"; + +const DisaggregationStep: React.FC = ({ project, onChange }) => { + const { d2, config } = useAppContext(); + + return ( + + content + + ); +}; + +export default React.memo(DisaggregationStep); diff --git a/src/components/steps/mer-selection/MerSelectionStep.tsx b/src/components/steps/mer-selection/MerSelectionStep.tsx new file mode 100644 index 00000000..4db97d28 --- /dev/null +++ b/src/components/steps/mer-selection/MerSelectionStep.tsx @@ -0,0 +1,23 @@ +import React from "react"; +import { StepProps } from "../../../pages/project-wizard/ProjectWizard"; +import DataElementsStep, { DataElementsStepProps } from "../data-elements/DataElementsStep"; + +const DataElementsMER: React.FC = props => { + const { project } = props; + const getSelection: DataElementsStepProps["onSelect"] = React.useCallback( + (sectorId, dataElementIds) => { + return project.updateDataElementsMERSelection(sectorId, dataElementIds); + }, + [project] + ); + + return ( + + ); +}; + +export default React.memo(DataElementsMER); diff --git a/src/models/Project.ts b/src/models/Project.ts index fd6ea706..c0cb62b0 100644 --- a/src/models/Project.ts +++ b/src/models/Project.ts @@ -7,7 +7,7 @@ import { generateUid } from "d2/uid"; import { TableSorting } from "d2-ui-components"; import i18n from "../locales"; -import DataElementsSet, { PeopleOrBenefit, DataElement } from "./dataElementsSet"; +import DataElementsSet, { PeopleOrBenefit, DataElement, SelectionInfo } from "./dataElementsSet"; import ProjectDb from "./ProjectDb"; import { toISOString, getMonthsRange } from "../utils/date"; import ProjectDownload from "./ProjectDownload"; diff --git a/src/models/dataElementsSet.ts b/src/models/dataElementsSet.ts index de04227c..8beeda1e 100644 --- a/src/models/dataElementsSet.ts +++ b/src/models/dataElementsSet.ts @@ -6,6 +6,7 @@ import { Sector } from "./Config"; import i18n from "../locales"; import User from "./user"; import { fromPairs, getKeys } from "../types/utils"; +import Project from "./Project"; /* Abstract list of Project data element of type DataElement. Usage: @@ -64,6 +65,11 @@ export interface SelectionInfo { messages?: string[]; } +export interface ProjectSelection { + selectionInfo: SelectionInfo; + project: Project; +} + type GetOptions = Partial<{ sectorId: string; series: string; diff --git a/src/pages/project-wizard/ProjectWizard.tsx b/src/pages/project-wizard/ProjectWizard.tsx index b46ddcc2..17bbbf2a 100644 --- a/src/pages/project-wizard/ProjectWizard.tsx +++ b/src/pages/project-wizard/ProjectWizard.tsx @@ -22,6 +22,9 @@ import { Config } from "../../models/Config"; import { helpTexts } from "./help-texts"; import { ReactComponentLike } from "prop-types"; import SharingStep from "../../components/steps/sharing/SharingStep"; +import DisaggregationStep from "../../components/steps/disaggregation/DisaggregationStep"; +import DataElementsSelectionStep from "../../components/steps/data-elements-selection/DataElementsSelectionStep"; +import MerSelectionStep from "../../components/steps/mer-selection/MerSelectionStep"; type Action = { type: "create" } | { type: "edit"; id: string }; @@ -128,17 +131,24 @@ class ProjectWizardImpl extends React.Component { { key: "indicators", label: i18n.t("Selection of Indicators"), - component: DataElementsSelection, + component: DataElementsSelectionStep, validationKeys: ["dataElementsSelection"], help: helpTexts.indicators, }, { key: "mer-indicators", label: i18n.t("Selection of MER Indicators"), - component: DataElementsMER, + component: MerSelectionStep, validationKeys: ["dataElementsMER"], help: helpTexts.merIndicators, }, + { + key: "disaggregation", + label: i18n.t("Disaggregation"), + component: DisaggregationStep, + validationKeys: [], + help: helpTexts.disaggregation, + }, { key: "sharing", label: i18n.t("Sharing"), @@ -275,12 +285,4 @@ const ProjectWizard: React.FC = props => { ); }; -const DataElementsSelection: React.FC = props => ( - -); - -const DataElementsMER: React.FC = props => ( - -); - export default React.memo(ProjectWizard); diff --git a/src/pages/project-wizard/help-texts.tsx b/src/pages/project-wizard/help-texts.tsx index e47a72a3..e28d21d2 100644 --- a/src/pages/project-wizard/help-texts.tsx +++ b/src/pages/project-wizard/help-texts.tsx @@ -33,6 +33,7 @@ export const helpTexts = { `- MER indicators must be selected in coordination with your Country Director and Regional Team.`, { nsSeparator: false } ), + disaggregation: i18n.t("Override default disaggregation for project indicators"), save: i18n.t( `If you need to correct an item in your project, please click the grey “Previous” button located on the bottom right side of the screen.` ), From f82edd500f7427d10bd37ff9c76b7031634222f0 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Thu, 16 Jul 2020 09:07:00 +0200 Subject: [PATCH 05/28] Add disaggregation logic --- src/components/dropdown/Dropdown.tsx | 19 +- .../data-elements/DataElementsFilters.tsx | 71 ++++--- .../steps/data-elements/DataElementsStep.tsx | 13 +- .../steps/data-elements/DataElementsTable.tsx | 195 +++++++++++------- .../disaggregation/DisaggregationStep.tsx | 143 ++++++++++++- src/components/steps/save/SaveStep.tsx | 17 +- src/models/Config.ts | 14 +- src/models/Disaggregation.ts | 47 +++++ src/models/Project.ts | 10 +- src/models/ProjectDb.ts | 19 +- src/models/dataElementsSet.ts | 59 +++++- src/pages/project-wizard/ProjectWizard.tsx | 3 +- src/utils/react.tsx | 10 + 13 files changed, 494 insertions(+), 126 deletions(-) create mode 100644 src/models/Disaggregation.ts create mode 100644 src/utils/react.tsx diff --git a/src/components/dropdown/Dropdown.tsx b/src/components/dropdown/Dropdown.tsx index c2d9d3cf..d438b285 100644 --- a/src/components/dropdown/Dropdown.tsx +++ b/src/components/dropdown/Dropdown.tsx @@ -5,10 +5,12 @@ import DropdownForm from "./DropdownForm"; type Value = string; -interface DropdownProps { - items: Array<{ value: Value; text: string }>; +export type DropdownItem = { value: Value; text: string }; + +export interface DropdownProps { + items: Array; onChange: (value: Value | undefined) => void; - label: string; + label?: string; value?: Value; hideEmpty?: boolean; } @@ -18,8 +20,15 @@ const Dropdown: React.FC = props => { const selectValue = value === undefined || !items.map(item => item.value).includes(value) ? "" : value; + const SelectWrapper = (props: any) => + label ? ( + {props.children} + ) : ( + {props.children} + ); + return ( - + - + ); }; diff --git a/src/components/steps/data-elements/DataElementsFilters.tsx b/src/components/steps/data-elements/DataElementsFilters.tsx index cfff0414..8c054e25 100644 --- a/src/components/steps/data-elements/DataElementsFilters.tsx +++ b/src/components/steps/data-elements/DataElementsFilters.tsx @@ -5,13 +5,19 @@ import i18n from "../../../locales"; import { Checkbox, FormControlLabel } from "@material-ui/core"; import { makeStyles } from "@material-ui/styles"; import MultipleDropdown from "../../dropdown/MultipleDropdown"; +import { fromPairs } from "../../../types/utils"; interface DataElementsFiltersProps { filter: Filter; filterOptions: FilterOptions; onChange(newFilters: Filter): void; + visibleFilters?: FilterKey[]; } +const filterKeys = ["indicatorType", "externals", "onlySelected"] as const; + +export type FilterKey = typeof filterKeys[number]; + export interface Filter { indicatorType?: IndicatorType; onlySelected?: boolean; @@ -23,39 +29,58 @@ export interface FilterOptions { } const DataElementsFilters: React.FC = props => { - const { filter, filterOptions, onChange } = props; + const { filter, filterOptions, onChange, visibleFilters } = props; const classes = useStyles(); const externalsOptions = [{ value: "", text: i18n.t("Internals") }].concat( filterOptions.externals.map(name => ({ value: name, text: name })) ); + const isFilterVisible: Record = React.useMemo(() => { + return fromPairs( + filterKeys.map(key => { + const isVisible = visibleFilters ? visibleFilters.includes(key) : true; + return [key, isVisible] as [FilterKey, boolean]; + }) + ); + }, visibleFilters); + return (
- ({ value: name, text: name }))} - value={filter.indicatorType} - onChange={value => onChange({ ...filter, indicatorType: value as IndicatorType })} - label={i18n.t("Indicator Type")} - /> + {isFilterVisible.indicatorType && ( + ({ value: name, text: name }))} + value={filter.indicatorType} + onChange={value => + onChange({ ...filter, indicatorType: value as IndicatorType }) + } + label={i18n.t("Indicator Type")} + /> + )} - onChange({ ...filter, externals: values })} - label={i18n.t("Externals")} - /> + {isFilterVisible.externals && ( + onChange({ ...filter, externals: values })} + label={i18n.t("Externals")} + /> + )} - onChange({ ...filter, onlySelected: ev.target.checked })} - /> - } - /> + {isFilterVisible.onlySelected && ( + + onChange({ ...filter, onlySelected: ev.target.checked }) + } + /> + } + /> + )}
); }; diff --git a/src/components/steps/data-elements/DataElementsStep.tsx b/src/components/steps/data-elements/DataElementsStep.tsx index bce26e39..5ed31de1 100644 --- a/src/components/steps/data-elements/DataElementsStep.tsx +++ b/src/components/steps/data-elements/DataElementsStep.tsx @@ -1,6 +1,6 @@ import React, { useState } from "react"; import { StepProps } from "../../../pages/project-wizard/ProjectWizard"; -import DataElementsTable from "./DataElementsTable"; +import DataElementsTable, { FieldName } from "./DataElementsTable"; import Sidebar from "./Sidebar"; import { Id } from "../../../types/d2-api"; import DataElementsSet, { ProjectSelection } from "../../../models/dataElementsSet"; @@ -41,6 +41,7 @@ const DataElementsStep: React.FC = props => { dataElementsSet={dataElementsSet} sectorId={sectorId} onSelectionChange={onSelectionChange} + columns={initialColumns} /> } @@ -48,4 +49,14 @@ const DataElementsStep: React.FC = props => { ); }; +const initialColumns: FieldName[] = [ + "name", + "code", + "indicatorType", + "peopleOrBenefit", + "series", + "countingMethod", + "externals", +]; + export default React.memo(DataElementsStep); diff --git a/src/components/steps/data-elements/DataElementsTable.tsx b/src/components/steps/data-elements/DataElementsTable.tsx index 2000ee6b..3ef967b8 100644 --- a/src/components/steps/data-elements/DataElementsTable.tsx +++ b/src/components/steps/data-elements/DataElementsTable.tsx @@ -1,19 +1,32 @@ import React, { useState, useEffect, useMemo, ReactNode } from "react"; -import { ObjectsTable, useSnackbar, RowConfig } from "d2-ui-components"; +import { ObjectsTable, useSnackbar, RowConfig, TableAction } from "d2-ui-components"; import { TablePagination, TableColumn, TableState, TableSorting } from "d2-ui-components"; import _ from "lodash"; -import DataElementsFilters, { Filter } from "./DataElementsFilters"; +import DataElementsFilters, { Filter, FilterKey } from "./DataElementsFilters"; import i18n from "../../../locales"; -import DataElementsSet, { SelectionInfo, DataElement } from "../../../models/dataElementsSet"; +import DataElementsSet, { + SelectionInfo, + DataElement as DataElement_, +} from "../../../models/dataElementsSet"; import { Tooltip } from "@material-ui/core"; import { makeStyles } from "@material-ui/core/styles"; import { Id } from "../../../types/d2-api"; +import { renderJoin } from "../../../utils/react"; + +// Add keys used in custom columns +type DataElement = DataElement_ & { isCovid19?: boolean }; export interface DataElementsTableProps { dataElementsSet: DataElementsSet; sectorId: Id; - onSelectionChange: (dataElementIds: Id[]) => SelectionInfo; + onlySelected?: boolean; + onSelectionChange?: (dataElementIds: Id[]) => SelectionInfo; + showGuidance?: boolean; + columns: FieldName[]; + customColumns?: TableColumn[]; + actions?: TableAction[]; + visibleFilters?: FilterKey[]; } const initialPagination: Partial = { @@ -39,56 +52,37 @@ const sortableFields = [ ] as const; type SortableField = typeof sortableFields[number]; -const getName = _.memoize(_getName, dataElement => dataElement.id); +// TODO: memoize should use de.id and step key +//const getName = _.memoize(_getName, dataElement => dataElement.id); +const getName = _getName; -const columns: TableColumn[] = [ - { - name: "name" as const, - text: i18n.t("Name"), - sortable: true, - getValue: getName, - }, - { - name: "code" as const, - text: i18n.t("Code"), - sortable: true, - getValue: withPaired("code"), - }, - { name: "indicatorType" as const, text: i18n.t("Indicator Type"), sortable: true }, - { - name: "peopleOrBenefit" as const, - text: i18n.t("People / Benefit"), - sortable: true, - getValue: withPaired("peopleOrBenefit"), - }, - { - name: "series" as const, - text: i18n.t("Series"), - sortable: true, - getValue: withPaired("series"), - }, - { - name: "countingMethod" as const, - text: i18n.t("Counting Method"), - sortable: true, - getValue: withPaired("countingMethod"), - }, - { - name: "externals" as const, - text: i18n.t("Externals"), - sortable: true, - getValue: withPaired("externals", externals => externals.join(", ")), - }, -]; +export type FieldName = + | "name" + | "code" + | "peopleOrBenefit" + | "series" + | "countingMethod" + | "externals" + | "indicatorType"; const DataElementsTable: React.FC = props => { - const { dataElementsSet, sectorId, onSelectionChange } = props; + const { + dataElementsSet, + sectorId, + onSelectionChange, + columns: initialColumns, + visibleFilters, + onlySelected, + showGuidance = true, + customColumns = [], + actions, + } = props; const snackbar = useSnackbar(); const [filter, setFilter] = useState({}); useEffect(() => setFilter({}), [sectorId]); - const fullFilter = { ...filter, sectorId }; + const fullFilter = { ...filter, sectorId, onlySelected }; const dataElements = useMemo(() => dataElementsSet.get(fullFilter), [ dataElementsSet, @@ -104,7 +98,9 @@ const DataElementsTable: React.FC = props => { }, [dataElementsSet, sectorId]); const selection = useMemo(() => { - return dataElementsSet.get({ onlySelected: true, sectorId }).map(de => ({ id: de.id })); + return onSelectionChange + ? dataElementsSet.get({ onlySelected: true, sectorId }).map(de => ({ id: de.id })) + : undefined; }, [dataElementsSet, sectorId]); const initialState = useMemo(() => { @@ -113,7 +109,7 @@ const DataElementsTable: React.FC = props => { const onChange = React.useCallback( (state: TableState) => { - return onTableChange(onSelectionChange, snackbar, state); + if (onSelectionChange) return onTableChange(onSelectionChange, snackbar, state); }, [onTableChange, onSelectionChange, snackbar] ); @@ -125,6 +121,7 @@ const DataElementsTable: React.FC = props => { filter={filter} filterOptions={filterOptions} onChange={setFilter} + visibleFilters={visibleFilters} /> ), [filter, filterOptions, setFilter] @@ -138,6 +135,53 @@ const DataElementsTable: React.FC = props => { [dataElements] ); + const allColumns = React.useMemo(() => { + const columns = [ + { + name: "name" as const, + text: i18n.t("Name"), + sortable: true, + getValue: (de: DataElement) => getName(de, showGuidance), + }, + { + name: "code" as const, + text: i18n.t("Code"), + sortable: true, + getValue: withPaired("code"), + }, + { name: "indicatorType" as const, text: i18n.t("Indicator Type"), sortable: true }, + { + name: "peopleOrBenefit" as const, + text: i18n.t("People / Benefit"), + sortable: true, + getValue: withPaired("peopleOrBenefit"), + }, + { + name: "series" as const, + text: i18n.t("Series"), + sortable: true, + getValue: withPaired("series"), + }, + { + name: "countingMethod" as const, + text: i18n.t("Counting Method"), + sortable: true, + getValue: withPaired("countingMethod"), + }, + { + name: "externals" as const, + text: i18n.t("Externals"), + sortable: true, + getValue: withPaired("externals", externals => externals.join(", ")), + }, + ]; + const columnsToShow: TableColumn[] = _(columns) + .keyBy(column => column.name) + .at(initialColumns) + .value(); + return _.concat(columnsToShow, customColumns); + }, [initialColumns, customColumns, showGuidance]); + if (!sectorId) return null; return ( @@ -147,12 +191,13 @@ const DataElementsTable: React.FC = props => { rowConfig={rowConfig} forceSelectionColumn={true} initialState={initialState} - columns={columns} + columns={allColumns} searchBoxLabel={i18n.t("Search by name / code")} onChange={onChange} searchBoxColumns={searchBoxColumns} resetKey={JSON.stringify(fullFilter)} filterComponents={filterComponents} + actions={actions} /> ); }; @@ -171,27 +216,38 @@ const useStyles = makeStyles(() => ({ }, })); -function _getName(dataElement: DataElement, _value: ReactNode): ReactNode { - return ; +function _getName(dataElement: DataElement, showGuidance: boolean): ReactNode { + return ( + + ); } -const NameColumn: React.FC<{ dataElement: DataElement }> = ({ dataElement }) => { +const NameColumn: React.FC<{ dataElement: DataElement; showGuidance: boolean }> = ({ + dataElement, + showGuidance, +}) => { const dataElements = [dataElement, ...dataElement.pairedDataElements]; const classes = useStyles(); const tooltips = renderJoin( - dataElements.map(dataElement => ( - {getTooltipContents(dataElement)} - } - classes={{ tooltip: classes.tooltip }} - > + dataElements.map(dataElement => + showGuidance ? ( + + {getTooltipContents(dataElement)} + + } + classes={{ tooltip: classes.tooltip }} + > + {dataElement.name} + + ) : ( {dataElement.name} - - )), + ) + ),
); @@ -238,7 +294,8 @@ function withPaired( return {renderJoin(values,
)}
; }; - return _.memoize(render, dataElement => dataElement.id); + //return _.memoize(render, dataElement => dataElement.id); + return render; } function getSelectionMessage(dataElements: DataElement[], action: string): string | null { @@ -270,12 +327,4 @@ function onTableChange( if (selectionInfo) showSelectionMessage(snackbar, selectionInfo); } -function renderJoin(nodes: ReactNode[], separator: ReactNode): ReactNode { - return _(nodes) - .compact() - .flatMap((node, idx) => (idx < nodes.length - 1 ? [node, separator] : [node])) - .map((node, idx) => {node || "-"}) - .value(); -} - export default React.memo(DataElementsTable); diff --git a/src/components/steps/disaggregation/DisaggregationStep.tsx b/src/components/steps/disaggregation/DisaggregationStep.tsx index 5f41650b..76b66552 100644 --- a/src/components/steps/disaggregation/DisaggregationStep.tsx +++ b/src/components/steps/disaggregation/DisaggregationStep.tsx @@ -1,16 +1,147 @@ import React from "react"; -import { Card, CardContent } from "@material-ui/core"; import { StepProps } from "../../../pages/project-wizard/ProjectWizard"; -import { useAppContext } from "../../../contexts/api-context"; +import Sidebar from "../data-elements/Sidebar"; +import DataElementsTable, { FieldName } from "../data-elements/DataElementsTable"; +import { Ref, Id } from "../../../types/d2-api"; +import { FilterKey } from "../data-elements/DataElementsFilters"; +import { DataElement } from "../../../models/dataElementsSet"; +import i18n from "../../../locales"; +import Dropdown, { DropdownProps } from "../../dropdown/Dropdown"; +import LocalHospitalIcon from "@material-ui/icons/LocalHospital"; +import NotInterestedIcon from "@material-ui/icons/NotInterested"; +import Project from "../../../models/Project"; +import { renderJoin } from "../../../utils/react"; +import { getIds } from "../../../utils/dhis2"; const DisaggregationStep: React.FC = ({ project, onChange }) => { - const { d2, config } = useAppContext(); + const menuItems = React.useMemo( + () => project.sectors.map(sector => ({ id: sector.id, text: sector.displayName })), + [project] + ); + const [sectorId, setSectorId] = React.useState( + menuItems.length > 0 ? menuItems[0].id : "" + ); + const setSector = React.useCallback((sector: Ref) => setSectorId(sector.id), [setSectorId]); + const dataElementsSet = project.dataElementsSelection; + + const disaggregationItems = React.useMemo(() => { + return [ + { value: "false", text: i18n.t("No") }, + { value: "true", text: i18n.t("Yes") }, + ]; + }, []); + + const setValues = React.useCallback( + (dataElementIds: Id[], isSet: boolean) => { + const relatedIds = getIds(dataElementsSet.getRelatedGroup(sectorId, dataElementIds)); + const newDisaggregation = project.disaggregation.setCovid19(relatedIds, isSet); + const newProject = project.setObj({ disaggregation: newDisaggregation }); + onChange(newProject); + }, + [onChange, project] + ); + + const customColumns = React.useMemo(() => { + return [ + { + name: "categoryCombo" as const, + text: i18n.t("Disaggregation"), + sortable: true, + getValue: function getValue(dataElement: DataElement) { + const values = [dataElement, ...dataElement.pairedDataElements].map(de => ( +
+ {de.categoryCombo.displayName} +
+ )); + const key = dataElement.categoryCombo.id; + return {renderJoin(values, <>)}; + }, + }, + { + name: "isCovid19" as const, + text: i18n.t("COVID-19"), + sortable: true, + getValue: function getValue(dataElement: DataElement) { + return ( + + ); + }, + }, + ]; + }, [Covid19Column, project]); + + const actions = React.useMemo(() => { + return [ + { + name: "set-covid19", + icon: , + text: i18n.t("Set COVID-19"), + multiple: true, + onClick: (ids: Id[]) => setValues(ids, true), + primary: false, + }, + { + name: "unset-covid19", + icon: , + text: i18n.t("Unset COVID-19"), + multiple: true, + primary: false, + onClick: (ids: Id[]) => setValues(ids, false), + }, + ]; + }, [Covid19Column]); return ( - - content - + + + + } + /> ); }; +const Covid19Column: React.FC<{ + project: Project; + dataElement: DataElement; + items: DropdownProps["items"]; + onChange(dataElementId: Id[], newValue: boolean): void; +}> = props => { + const { project, dataElement, items, onChange } = props; + const setValue = React.useCallback( + (newValue: string | undefined) => { + onChange([dataElement.id], newValue === "true"); + }, + [onChange, dataElement.id] + ); + + const value = project.disaggregation.isCovid19(dataElement.id); + + return ; +}; + +const styles = { wrapper: { width: "100%" } }; + +const initialColumns: FieldName[] = ["name", "code", "indicatorType", "peopleOrBenefit"]; +const visibleFilters: FilterKey[] = ["indicatorType"]; + export default React.memo(DisaggregationStep); diff --git a/src/components/steps/save/SaveStep.tsx b/src/components/steps/save/SaveStep.tsx index b704335d..8b3851e9 100644 --- a/src/components/steps/save/SaveStep.tsx +++ b/src/components/steps/save/SaveStep.tsx @@ -119,13 +119,16 @@ function getSectorsInfo(project: Project): ReactNode { {sectorsInfo.map(({ sector, dataElementsInfo }) => { const value = (
    - {dataElementsInfo.map(({ dataElement, isMER, usedInDataSetSection }) => ( -
  • - {dataElement.name} - {dataElement.code} - {isMER ? ` [${i18n.t("MER")}]` : ""} - {usedInDataSetSection ? "" : - {hiddenMsg}} -
  • - ))} + {dataElementsInfo.map( + ({ dataElement, isMER, isCovid19, usedInDataSetSection }) => ( +
  • + {dataElement.name} - {dataElement.code} + {isCovid19 ? ` [${i18n.t("COVID-19")}]` : ""} + {isMER ? ` [${i18n.t("MER")}]` : ""} + {usedInDataSetSection ? "" : - {hiddenMsg}} +
  • + ) + )}
); return ; diff --git a/src/models/Config.ts b/src/models/Config.ts index 71c63542..9598e8fa 100644 --- a/src/models/Config.ts +++ b/src/models/Config.ts @@ -56,20 +56,23 @@ const baseConfig = { categories: { targetActual: "ACTUAL_TARGET", gender: "GENDER", - newRecurring: "NEW_RECURRING", + newRecurring: "NEW_RETURNING", + covid19: "COVID19", }, categoryCombos: { targetActual: "ACTUAL_TARGET", - genderNewRecurring: "GENDER_NEW_RECURRING", + genderNewRecurring: "NEW_RETURNING_GENDER", + genderNewRecurringCovid19: "NEW_RETURNING_GENDER_COVID19", default: "default", }, categoryOptions: { target: "TARGET", actual: "ACTUAL", new: "NEW", - recurring: "RECURRING", + recurring: "RETURNING", male: "MALE", female: "FEMALE", + covid19: "COVID19", }, dataElementGroups: { global: "GLOBAL", @@ -116,6 +119,8 @@ const metadataParams = { fields: { id: yes, code: yes, + displayName: yes, + categories: { id: yes }, categoryOptionCombos: { id: yes, displayName: yes, @@ -228,7 +233,8 @@ type IndexedObjs = Record< export type Attribute = CodedObject; export type CategoryOptionCombo = NamedObject & { categoryOptions: NamedObject[] }; -export type CategoryCombo = CodedObject & { categoryOptionCombos: CategoryOptionCombo[] }; +export type CategoryCombo = NamedObject & + CodedObject & { categories: Ref[]; categoryOptionCombos: CategoryOptionCombo[] }; export type CategoryOption = CodedObject & { categoryOptionCombos: NamedObject[] }; export type Category = CodedObject & { categoryOptions: CategoryOption[] }; export type LegendSet = CodedObject; diff --git a/src/models/Disaggregation.ts b/src/models/Disaggregation.ts new file mode 100644 index 00000000..882cb191 --- /dev/null +++ b/src/models/Disaggregation.ts @@ -0,0 +1,47 @@ +import _ from "lodash"; +import { Id, Ref } from "../types/d2-api"; +import { Config } from "./Config"; + +interface CategoryCombo { + id: Id; + name: string; +} + +interface Data { + mapping: Record; + dataElementsById: Record; +} + +export class Disaggregation { + constructor(private config: Config, private data: Data) {} + + static build(config: Config, mapping: Data["mapping"] = {}) { + const data = { + dataElementsById: _.keyBy(config.dataElements, de => de.id), + mapping: mapping, + }; + return new Disaggregation(config, data); + } + + getCategoryCombo(dataElementId: Id): Ref { + const { categoryCombos } = this.config; + const categoryCombo = this.isCovid19(dataElementId) + ? categoryCombos.genderNewRecurringCovid19 + : categoryCombos.genderNewRecurring; + return { id: categoryCombo.id }; + } + + setCovid19(dataElementIds: Id[], isSet: boolean): Disaggregation { + const update = _(dataElementIds) + .filter(deId => _.has(this.data.dataElementsById, deId)) + .map(deId => [deId, isSet]) + .fromPairs() + .value(); + const newData = { ...this.data, mapping: { ...this.data.mapping, ...update } }; + return new Disaggregation(this.config, newData); + } + + isCovid19(dataElementId: Id): boolean { + return !!this.data.mapping[dataElementId]; + } +} diff --git a/src/models/Project.ts b/src/models/Project.ts index c0cb62b0..aa17ae78 100644 --- a/src/models/Project.ts +++ b/src/models/Project.ts @@ -7,7 +7,7 @@ import { generateUid } from "d2/uid"; import { TableSorting } from "d2-ui-components"; import i18n from "../locales"; -import DataElementsSet, { PeopleOrBenefit, DataElement, SelectionInfo } from "./dataElementsSet"; +import DataElementsSet, { PeopleOrBenefit, DataElement } from "./dataElementsSet"; import ProjectDb from "./ProjectDb"; import { toISOString, getMonthsRange } from "../utils/date"; import ProjectDownload from "./ProjectDownload"; @@ -22,6 +22,7 @@ import { } from "../utils/validations"; import { getKeys, Maybe } from "../types/utils"; import ProjectSharing, { Sharing } from "./ProjectSharing"; +import { Disaggregation } from "./Disaggregation"; /* Project model. @@ -91,6 +92,7 @@ export interface ProjectData { parentOrgUnit: OrganisationUnit | undefined; dataElementsSelection: DataElementsSet; dataElementsMER: DataElementsSet; + disaggregation: Disaggregation; dataSets: { actual: DataSet; target: DataSet } | undefined; dashboard: Ref | undefined; initialData: Omit | undefined; @@ -184,6 +186,7 @@ class Project { name: i18n.t("Name"), dataElementsSelection: i18n.t("Data Elements Selection"), dataElementsMER: i18n.t("Data Elements MER"), + disaggregation: i18n.t("Disaggregation"), description: i18n.t("Description"), awardNumber: i18n.t("Award Number"), subsequentLettering: i18n.t("Subsequent Lettering"), @@ -313,10 +316,12 @@ class Project { .filter(de => sectorIds.has(de.sector.id)) .uniqBy(de => de.id) .value(); + const orderBySectorId: _.Dictionary = _(sectors) .map((sector, idx) => [sector.id, idx]) .fromPairs() .value(); + const selectedDataElementsSorted = _.orderBy( selectedDataElements, [de => orderBySectorId[de.sector.id], de => de.name], @@ -330,6 +335,7 @@ class Project { dataElementsInfo: Array<{ dataElement: DataElement; isMER: boolean; + isCovid19: boolean; usedInDataSetSection: boolean; }>; }> { @@ -343,6 +349,7 @@ class Project { const dataElementsInfo = dataElements.map(dataElement => ({ dataElement, isMER: selectedMER.has(dataElement.id), + isCovid19: this.disaggregation.isCovid19(dataElement.id), usedInDataSetSection: dataElementsBySectorMapping[dataElement.id] === sector.id, })); @@ -398,6 +405,7 @@ class Project { id: generateUid(), dataElementsSelection, dataElementsMER, + disaggregation: Disaggregation.build(config), sharing: ProjectSharing.getInitialSharing(config), initialData: undefined, }; diff --git a/src/models/ProjectDb.ts b/src/models/ProjectDb.ts index d9688c28..c150dc4b 100644 --- a/src/models/ProjectDb.ts +++ b/src/models/ProjectDb.ts @@ -1,3 +1,4 @@ +import { Disaggregation } from "./Disaggregation"; import _ from "lodash"; import moment from "moment"; import { MetadataPayload, Id, D2Api } from "../types/d2-api"; @@ -322,7 +323,7 @@ export default class ProjectDb { const dataSetElements = _.uniqBy(selectedDataElements, de => de.id).map(dataElement => ({ dataSet: { id: dataSetId }, dataElement: { id: dataElement.id }, - categoryCombo: { id: dataElement.categoryCombo.id }, + categoryCombo: project.disaggregation.getCategoryCombo(dataElement.id), })); const sections0 = this.getDataElementsBySector().map(({ sector, dataElements }, index) => { @@ -442,6 +443,21 @@ export default class ProjectDb { superSet: dataElementsSelection, }).updateSelected(_.mapValues(dataElementsBySectorId, value => value.selectedMERIds)); + const categoryCombosById = _.keyBy(config.categoryCombos, cc => cc.id); + + const covidMapping = _(projectDataSets.actual.dataSetElements) + .map(dse => { + const categoryCombo = categoryCombosById[dse.categoryCombo.id]; + const isCovid19 = _(categoryCombo.categories).some( + category => category.id === config.categories.covid19.id + ); + return [dse.dataElement.id, isCovid19]; + }) + .fromPairs() + .value(); + + const disaggregation = Disaggregation.build(config, covidMapping); + const projectData = { id: orgUnit.id, name: orgUnit.name, @@ -460,6 +476,7 @@ export default class ProjectDb { dashboard: dashboardId ? { id: dashboardId } : undefined, dataElementsSelection, dataElementsMER, + disaggregation, sharing: getSharing(projectDataSets.target), }; diff --git a/src/models/dataElementsSet.ts b/src/models/dataElementsSet.ts index 8beeda1e..747eaccd 100644 --- a/src/models/dataElementsSet.ts +++ b/src/models/dataElementsSet.ts @@ -37,7 +37,7 @@ export interface DataElementBase { externals: string[]; externalsDescription: string; pairedDataElements: Array<{ id: Id; name: string; code: string }>; - categoryCombo: Ref; + categoryCombo: { id: Id; displayName: string }; selectable: boolean; } @@ -70,7 +70,7 @@ export interface ProjectSelection { project: Project; } -type GetOptions = Partial<{ +export type GetOptions = Partial<{ sectorId: string; series: string; indicatorType: IndicatorType; @@ -122,6 +122,7 @@ export default class DataElementsSet { const sectorsByDataElementId = getGroupsByDataElementId(sectorsSet); const seriesByDataElementId = getGroupsByDataElementId(seriesSet); const groupCodesByDataElementId = getGroupCodeByDataElementId(dataElementGroupSets); + const categoryCombosById = _.keyBy(metadata.categoryCombos, cc => cc.id); const dataElements = d2DataElements.map(d2DataElement => { const deId = d2DataElement.id; @@ -150,6 +151,7 @@ export default class DataElementsSet { console.error(`DataElement ${deCode} has no main sector`); return null; } else { + const { categoryCombo } = d2DataElement; const dataElement: DataElementBase = { id: d2DataElement.id, name: name, @@ -162,7 +164,10 @@ export default class DataElementsSet { pairedDataElements, countingMethod: countingMethod || "", externals, - categoryCombo: { id: d2DataElement.categoryCombo.id }, + categoryCombo: { + id: categoryCombo.id, + displayName: getCategoryComboName(categoryCombosById, categoryCombo), + }, selectable: isSelectable, }; return dataElement; @@ -232,6 +237,18 @@ export default class DataElementsSet { }); } + set(dataElementId: Id, data: Partial): DataElementsSet { + const newDataElementsBase = this.data.dataElementsBase.map( + (de): DataElementBase => { + return de.id === dataElementId ? { ...de, ...data } : de; + } + ); + return new DataElementsSet(this.config, { + ...this.data, + dataElementsBase: newDataElementsBase, + }); + } + updateSelected(dataElementsBySectorId: Record): DataElementsSet { return new DataElementsSet(this.config, { ...this.data, @@ -290,6 +307,30 @@ export default class DataElementsSet { return _.uniqBy(relatedDataElements, de => de.id); } + + getRelatedGroup(sectorId: Id, dataElementIds: Id[]): DataElement[] { + const { dataElementsAllBySector } = this.data; + const allDataElements = dataElementsAllBySector[sectorId] || []; + const allDataElementsByKey = _.groupBy(allDataElements, de => de.series || ""); + const byId = _.keyBy(allDataElements, de => de.id); + const selectedDataElements = _(byId) + .at(dataElementIds) + .flatMap(de => [de, ...de.pairedDataElements]) + .uniqBy(de => de.id) + .compact() + .value(); + + const relatedDataElements = _.compact( + selectedDataElements.flatMap(de => _(allDataElementsByKey).get(de.series || "", [])) + ); + + const dataElements = _.compact(_.at(byId, dataElementIds)); + + return _(dataElements) + .concat(relatedDataElements) + .uniqBy(de => de.id) + .value(); + } } type GroupByDataElement = Record>; @@ -480,3 +521,15 @@ function getDescriptionFields(d2DataElement: { description: string }) { description: notes.trim(), }; } + +function getCategoryComboName( + categoryCombosById: Record, + categoryComboRef: Ref +) { + const categoryCombo = _(categoryCombosById).get(categoryComboRef.id, null); + if (categoryCombo) { + return categoryCombo.code === "default" ? i18n.t("None") : categoryCombo.displayName; + } else { + return "Unknown"; + } +} diff --git a/src/pages/project-wizard/ProjectWizard.tsx b/src/pages/project-wizard/ProjectWizard.tsx index 17bbbf2a..391f13ca 100644 --- a/src/pages/project-wizard/ProjectWizard.tsx +++ b/src/pages/project-wizard/ProjectWizard.tsx @@ -16,7 +16,6 @@ import GeneralInfoStep from "../../components/steps/general-info/GeneralInfoStep import SectorsStep from "../../components/steps/sectors/SectorsStep"; import OrgUnitsStep from "../../components/steps/org-units/OrgUnitsStep"; import SaveStep from "../../components/steps/save/SaveStep"; -import DataElementsStep from "../../components/steps/data-elements/DataElementsStep"; import { getDevProject } from "../../models/dev-project"; import { Config } from "../../models/Config"; import { helpTexts } from "./help-texts"; @@ -151,7 +150,7 @@ class ProjectWizardImpl extends React.Component { }, { key: "sharing", - label: i18n.t("Sharing"), + label: i18n.t("Username Access"), component: SharingStep, description: i18n.t("Define sharing settings for metadata of the project."), }, diff --git a/src/utils/react.tsx b/src/utils/react.tsx new file mode 100644 index 00000000..fe95cdd9 --- /dev/null +++ b/src/utils/react.tsx @@ -0,0 +1,10 @@ +import React, { ReactNode } from "react"; +import _ from "lodash"; + +export function renderJoin(nodes: ReactNode[], separator: ReactNode): ReactNode { + return _(nodes) + .compact() + .flatMap((node, idx) => (idx < nodes.length - 1 ? [node, separator] : [node])) + .map((node, idx) => {node || "-"}) + .value(); +} From 0fbc765dd328875b845b17b1151def3a2ab3b2e0 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Fri, 17 Jul 2020 10:40:27 +0200 Subject: [PATCH 06/28] [Disaggregation] Add covid19 category dinamically to category combo override --- i18n/en.pot | 45 ++++++++---- .../disaggregation/DisaggregationStep.tsx | 10 +-- src/models/Config.ts | 9 ++- src/models/Disaggregation.ts | 69 ++++++++++++++++--- src/models/ProjectDb.ts | 16 +---- src/models/ProjectDownload.ts | 6 +- src/models/dataElementsSet.ts | 28 +++++--- src/models/validators/RecurringValidator.ts | 2 +- src/utils/dhis2.ts | 9 +++ 9 files changed, 136 insertions(+), 58 deletions(-) diff --git a/i18n/en.pot b/i18n/en.pot index cb2daf4c..aadf00c3 100644 --- a/i18n/en.pot +++ b/i18n/en.pot @@ -5,8 +5,8 @@ msgstr "" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -"POT-Creation-Date: 2020-07-06T21:07:30.089Z\n" -"PO-Revision-Date: 2020-07-06T21:07:30.089Z\n" +"POT-Creation-Date: 2020-07-17T08:38:07.286Z\n" +"PO-Revision-Date: 2020-07-17T08:38:07.286Z\n" msgid "Data Entry" msgstr "" @@ -104,6 +104,24 @@ msgstr "" msgid "selected" msgstr "" +msgid "No" +msgstr "" + +msgid "Yes" +msgstr "" + +msgid "Disaggregation" +msgstr "" + +msgid "COVID-19" +msgstr "" + +msgid "Add COVID-19 disaggregation" +msgstr "" + +msgid "Remove COVID-19 disaggregation" +msgstr "" + msgid "Field should be a 5-digit number" msgstr "" @@ -180,12 +198,6 @@ msgid "" "lost. Are you sure you want to proceed?" msgstr "" -msgid "Yes" -msgstr "" - -msgid "No" -msgstr "" - msgid "Data Approval" msgstr "" @@ -386,7 +398,7 @@ msgstr "" msgid "New" msgstr "" -msgid "Recurring" +msgid "Returning" msgstr "" msgid "Total Actual People" @@ -398,10 +410,10 @@ msgstr "" msgid "Female New" msgstr "" -msgid "Male Recurring" +msgid "Male Returning" msgstr "" -msgid "Female Recurring" +msgid "Female Returning" msgstr "" msgid "People" @@ -428,6 +440,9 @@ msgstr "" msgid "Global data elements with selected subs cannot be unselected" msgstr "" +msgid "None" +msgstr "" + msgid "" "Actual value ({{actualValue}}) should not be greater than 20% of the target " "value ({{targetValue}})" @@ -437,7 +452,7 @@ msgid "there is no data for previous periods" msgstr "" msgid "" -"Recurring value ({{recurringValue}}) cannot be greater than the sum of new " +"Returning value ({{recurringValue}}) cannot be greater than the sum of new " "values for past periods ({{newValuesSumFormula}})" msgstr "" @@ -546,6 +561,9 @@ msgstr "" msgid "Selection of MER Indicators" msgstr "" +msgid "Username Access" +msgstr "" + msgid "Define sharing settings for metadata of the project." msgstr "" @@ -592,6 +610,9 @@ msgid "" "Director and Regional Team." msgstr "" +msgid "Override default disaggregation for project indicators" +msgstr "" + msgid "" "If you need to correct an item in your project, please click the grey " "“Previous” button located on the bottom right side of the screen." diff --git a/src/components/steps/disaggregation/DisaggregationStep.tsx b/src/components/steps/disaggregation/DisaggregationStep.tsx index 76b66552..67564984 100644 --- a/src/components/steps/disaggregation/DisaggregationStep.tsx +++ b/src/components/steps/disaggregation/DisaggregationStep.tsx @@ -33,8 +33,8 @@ const DisaggregationStep: React.FC = ({ project, onChange }) => { const setValues = React.useCallback( (dataElementIds: Id[], isSet: boolean) => { - const relatedIds = getIds(dataElementsSet.getRelatedGroup(sectorId, dataElementIds)); - const newDisaggregation = project.disaggregation.setCovid19(relatedIds, isSet); + const related = dataElementsSet.getGroupForDisaggregation(sectorId, dataElementIds); + const newDisaggregation = project.disaggregation.setCovid19(getIds(related), isSet); const newProject = project.setObj({ disaggregation: newDisaggregation }); onChange(newProject); }, @@ -81,7 +81,7 @@ const DisaggregationStep: React.FC = ({ project, onChange }) => { { name: "set-covid19", icon: , - text: i18n.t("Set COVID-19"), + text: i18n.t("Add COVID-19 disaggregation"), multiple: true, onClick: (ids: Id[]) => setValues(ids, true), primary: false, @@ -89,13 +89,13 @@ const DisaggregationStep: React.FC = ({ project, onChange }) => { { name: "unset-covid19", icon: , - text: i18n.t("Unset COVID-19"), + text: i18n.t("Remove COVID-19 disaggregation"), multiple: true, primary: false, onClick: (ids: Id[]) => setValues(ids, false), }, ]; - }, [Covid19Column]); + }, [Covid19Column, setValues]); return ( ; categories: IndexedObjs<"categories", Category>; categoryCombos: IndexedObjs<"categoryCombos", CategoryCombo>; + allCategoryCombos: CategoryCombo[]; categoryOptions: IndexedObjs<"categoryOptions", CategoryOption>; legendSets: IndexedObjs<"legendSets", LegendSet>; indicators: Indicator[]; @@ -54,16 +55,18 @@ const baseConfig = { mainSector: "PM_MAIN_SECTOR", }, categories: { + default: "default", targetActual: "ACTUAL_TARGET", gender: "GENDER", newRecurring: "NEW_RETURNING", covid19: "COVID19", }, categoryCombos: { + default: "default", targetActual: "ACTUAL_TARGET", + covid19: "COVID19", genderNewRecurring: "NEW_RETURNING_GENDER", - genderNewRecurringCovid19: "NEW_RETURNING_GENDER_COVID19", - default: "default", + genderNewRecurringCovid19: "COVID19_NEW_RETURNING_GENDER", }, categoryOptions: { target: "TARGET", @@ -127,7 +130,6 @@ const metadataParams = { categoryOptions: { id: yes, displayName: yes }, }, }, - filter: { code: { in: _.values(baseConfig.categoryCombos) } }, }, categoryOptions: { fields: { id: yes, code: yes, categoryOptionCombos: { id: yes } }, @@ -262,6 +264,7 @@ class ConfigLoader { attributes: indexObjects(metadata, "attributes"), categories: indexObjects(metadata, "categories"), categoryCombos: indexObjects(metadata, "categoryCombos"), + allCategoryCombos: metadata.categoryCombos, categoryOptions: indexObjects(metadata, "categoryOptions"), legendSets: indexObjects(metadata, "legendSets"), dataApprovalWorkflows: indexObjects(metadata, "dataApprovalWorkflows"), diff --git a/src/models/Disaggregation.ts b/src/models/Disaggregation.ts index 882cb191..29172145 100644 --- a/src/models/Disaggregation.ts +++ b/src/models/Disaggregation.ts @@ -1,15 +1,17 @@ import _ from "lodash"; import { Id, Ref } from "../types/d2-api"; import { Config } from "./Config"; - -interface CategoryCombo { - id: Id; - name: string; -} +import { getRef, haveSameRefs } from "../utils/dhis2"; interface Data { mapping: Record; dataElementsById: Record; + categoryCombosById: Record; +} + +interface DataSetElement { + dataElement: Ref; + categoryCombo?: Ref; } export class Disaggregation { @@ -18,17 +20,64 @@ export class Disaggregation { static build(config: Config, mapping: Data["mapping"] = {}) { const data = { dataElementsById: _.keyBy(config.dataElements, de => de.id), + categoryCombosById: _.keyBy(config.allCategoryCombos, cc => cc.id), mapping: mapping, }; return new Disaggregation(config, data); } + static buildFromDataSetElements(config: Config, dataSetElements: DataSetElement[]) { + const categoryCombosById = _.keyBy(config.categoryCombos, cc => cc.id); + const covidMapping = _(dataSetElements) + .map(dse => { + const categoryCombo = dse.categoryCombo + ? categoryCombosById[dse.categoryCombo.id] + : null; + const isCovid19 = categoryCombo + ? _(categoryCombo.categories || []).some( + category => category.id === config.categories.covid19.id + ) + : false; + return [dse.dataElement.id, isCovid19]; + }) + .fromPairs() + .value(); + + return Disaggregation.build(config, covidMapping); + } + + private getDefault(message: string): Ref { + console.error(message); + return getRef(this.config.categoryCombos.default); + } + getCategoryCombo(dataElementId: Id): Ref { - const { categoryCombos } = this.config; - const categoryCombo = this.isCovid19(dataElementId) - ? categoryCombos.genderNewRecurringCovid19 - : categoryCombos.genderNewRecurring; - return { id: categoryCombo.id }; + const { config, data } = this; + const isCovid19 = this.isCovid19(dataElementId); + const dataElement = _(data.dataElementsById).get(dataElementId, null); + const defaultCategory = this.config.categories.default; + if (!dataElement) return this.getDefault(`Data element not found: ${dataElementId}`); + + const deCategoryCombo = _(data.categoryCombosById).get(dataElement.categoryCombo.id, null); + if (!deCategoryCombo) + return this.getDefault(`Category combo not found: ${dataElement.categoryCombo.id}`); + + if (!isCovid19) { + return getRef(deCategoryCombo); + } else { + const categoriesWithCovid19 = _(deCategoryCombo.categories) + .reject(category => category.id === defaultCategory.id) + .concat([config.categories.covid19]) + .value(); + const categoryComboWithCovid19 = config.allCategoryCombos.find(cc => + haveSameRefs(cc.categories, categoriesWithCovid19) + ); + return categoryComboWithCovid19 + ? getRef(categoryComboWithCovid19) + : this.getDefault( + `Category combo related with covid19 not found: ${deCategoryCombo.id}` + ); + } } setCovid19(dataElementIds: Id[], isSet: boolean): Disaggregation { diff --git a/src/models/ProjectDb.ts b/src/models/ProjectDb.ts index c150dc4b..7946d5cd 100644 --- a/src/models/ProjectDb.ts +++ b/src/models/ProjectDb.ts @@ -443,20 +443,8 @@ export default class ProjectDb { superSet: dataElementsSelection, }).updateSelected(_.mapValues(dataElementsBySectorId, value => value.selectedMERIds)); - const categoryCombosById = _.keyBy(config.categoryCombos, cc => cc.id); - - const covidMapping = _(projectDataSets.actual.dataSetElements) - .map(dse => { - const categoryCombo = categoryCombosById[dse.categoryCombo.id]; - const isCovid19 = _(categoryCombo.categories).some( - category => category.id === config.categories.covid19.id - ); - return [dse.dataElement.id, isCovid19]; - }) - .fromPairs() - .value(); - - const disaggregation = Disaggregation.build(config, covidMapping); + const { dataSetElements } = projectDataSets.actual; + const disaggregation = Disaggregation.buildFromDataSetElements(config, dataSetElements); const projectData = { id: orgUnit.id, diff --git a/src/models/ProjectDownload.ts b/src/models/ProjectDownload.ts index 918320e6..d1e9e160 100644 --- a/src/models/ProjectDownload.ts +++ b/src/models/ProjectDownload.ts @@ -231,7 +231,7 @@ class ProjectDownload { ], [ ...repeat(empty, 4), - text(i18n.t("Recurring"), { + text(i18n.t("Returning"), { fill: fills.target, alignment: { horizontal: "right" }, }), @@ -292,7 +292,7 @@ class ProjectDownload { ], [ ...repeat(empty, 4), - text(i18n.t("Male Recurring"), { alignment: { horizontal: "right" } }), + text(i18n.t("Male Returning"), { alignment: { horizontal: "right" } }), ...this.mapPeriods(period => analytics.get(dataElement, period.id, [ config.categoryOptions.actual, @@ -304,7 +304,7 @@ class ProjectDownload { ], [ ...repeat(empty, 4), - text(i18n.t("Female Recurring"), { alignment: { horizontal: "right" } }), + text(i18n.t("Female Returning"), { alignment: { horizontal: "right" } }), ...this.mapPeriods(period => analytics.get(dataElement, period.id, [ config.categoryOptions.actual, diff --git a/src/models/dataElementsSet.ts b/src/models/dataElementsSet.ts index 747eaccd..743b7c63 100644 --- a/src/models/dataElementsSet.ts +++ b/src/models/dataElementsSet.ts @@ -286,7 +286,7 @@ export default class DataElementsSet { const allDataElementsByKey = _.keyBy(allDataElements, de => [de.indicatorType, de.series].join(".") ); - const selectedDataElements = _(allDataElements) + const sourceDataElements = _(allDataElements) .keyBy(de => de.id) .at(dataElementIds) .flatMap(de => [de, ...de.pairedDataElements]) @@ -295,7 +295,7 @@ export default class DataElementsSet { .value(); const relatedDataElements = _.compact( - selectedDataElements.map(de => { + sourceDataElements.map(de => { if (de.indicatorType === "sub") { const key = ["global", de.series].join("."); return _(allDataElementsByKey).get(key, null); @@ -308,12 +308,15 @@ export default class DataElementsSet { return _.uniqBy(relatedDataElements, de => de.id); } - getRelatedGroup(sectorId: Id, dataElementIds: Id[]): DataElement[] { + /* Return Global -> sub and paired relations, including source data elements */ + getGroupForDisaggregation(sectorId: Id, dataElementIds: Id[]): DataElement[] { const { dataElementsAllBySector } = this.data; const allDataElements = dataElementsAllBySector[sectorId] || []; - const allDataElementsByKey = _.groupBy(allDataElements, de => de.series || ""); - const byId = _.keyBy(allDataElements, de => de.id); - const selectedDataElements = _(byId) + const allDataElementsByKey = _.keyBy(allDataElements, de => + [de.indicatorType, de.series].join(".") + ); + const sourceDataElements = _(allDataElements) + .keyBy(de => de.id) .at(dataElementIds) .flatMap(de => [de, ...de.pairedDataElements]) .uniqBy(de => de.id) @@ -321,12 +324,17 @@ export default class DataElementsSet { .value(); const relatedDataElements = _.compact( - selectedDataElements.flatMap(de => _(allDataElementsByKey).get(de.series || "", [])) + sourceDataElements.map(de => { + if (de.indicatorType === "global") { + const key = ["sub", de.series].join("."); + return _(allDataElementsByKey).get(key, null); + } else { + return null; + } + }) ); - const dataElements = _.compact(_.at(byId, dataElementIds)); - - return _(dataElements) + return _(sourceDataElements) .concat(relatedDataElements) .uniqBy(de => de.id) .value(); diff --git a/src/models/validators/RecurringValidator.ts b/src/models/validators/RecurringValidator.ts index 0734473b..ef2cfc41 100644 --- a/src/models/validators/RecurringValidator.ts +++ b/src/models/validators/RecurringValidator.ts @@ -77,7 +77,7 @@ export class RecurringValidator { const isValid = recurringValue <= sumOfNewOnPastPeriods; const msg = i18n.t( - "Recurring value ({{recurringValue}}) cannot be greater than the sum of new values for past periods ({{newValuesSumFormula}})", + "Returning value ({{recurringValue}}) cannot be greater than the sum of new values for past periods ({{newValuesSumFormula}})", { recurringValue, newValuesSumFormula } ); diff --git a/src/utils/dhis2.ts b/src/utils/dhis2.ts index 9856bdd3..be1067a2 100644 --- a/src/utils/dhis2.ts +++ b/src/utils/dhis2.ts @@ -8,6 +8,15 @@ export function getIds(objs: T[]): Id[] { return objs.map(obj => obj.id); } +export function getRef(obj: T): Ref { + return { id: obj.id }; +} + +export function haveSameRefs(objs1: T[], objs2: T[]): boolean { + const get = (objs: T[]) => _.sortBy(objs.map(o => o.id)).join("-"); + return objs1.length === objs2.length && get(objs1) === get(objs2); +} + export function getRefs(objs: T[]): Ref[] { return objs.map(obj => ({ id: obj.id })); } From 5a5fc61316edc198e50a8c4620b0b5afc5e94741 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Fri, 17 Jul 2020 10:58:19 +0200 Subject: [PATCH 07/28] Abstract SectionsSidebar component --- .../sections-sidebar/SectionsSidebar.tsx | 25 ++++++++++ .../sections-sidebar-hooks.tsx | 14 ++++++ .../steps/data-elements/DataElementsStep.tsx | 34 +++++--------- .../steps/data-elements/Sidebar.tsx | 4 +- .../disaggregation/DisaggregationStep.tsx | 47 +++++++------------ 5 files changed, 69 insertions(+), 55 deletions(-) create mode 100644 src/components/sections-sidebar/SectionsSidebar.tsx create mode 100644 src/components/sections-sidebar/sections-sidebar-hooks.tsx diff --git a/src/components/sections-sidebar/SectionsSidebar.tsx b/src/components/sections-sidebar/SectionsSidebar.tsx new file mode 100644 index 00000000..9c200c9d --- /dev/null +++ b/src/components/sections-sidebar/SectionsSidebar.tsx @@ -0,0 +1,25 @@ +import React from "react"; +import Sidebar, { SidebarProps, MenuItem } from "../steps/data-elements/Sidebar"; +import { Id } from "../../types/d2-api"; + +interface SectionsSidebarProps { + sectorId: Id; + items: SidebarProps["menuItems"]; + setSector(sectorItem: MenuItem): void; +} + +const SectionsSidebar: React.FC = props => { + const { sectorId, items, setSector, children } = props; + return ( + {children}} + /> + ); +}; + +const styles = { wrapper: { width: "100%" } }; + +export default SectionsSidebar; diff --git a/src/components/sections-sidebar/sections-sidebar-hooks.tsx b/src/components/sections-sidebar/sections-sidebar-hooks.tsx new file mode 100644 index 00000000..451f757a --- /dev/null +++ b/src/components/sections-sidebar/sections-sidebar-hooks.tsx @@ -0,0 +1,14 @@ +import React from "react"; +import Project from "../../models/Project"; +import { Ref } from "../../types/d2-api"; + +export function useSectionsSidebar(project: Project) { + const items = React.useMemo( + () => project.sectors.map(sector => ({ id: sector.id, text: sector.displayName })), + [project] + ); + const [sectorId, setSectorId] = React.useState(items.length > 0 ? items[0].id : ""); + const setSector = React.useCallback((sector: Ref) => setSectorId(sector.id), [setSectorId]); + + return { items, sectorId, setSector }; +} diff --git a/src/components/steps/data-elements/DataElementsStep.tsx b/src/components/steps/data-elements/DataElementsStep.tsx index 5ed31de1..4ab87dc0 100644 --- a/src/components/steps/data-elements/DataElementsStep.tsx +++ b/src/components/steps/data-elements/DataElementsStep.tsx @@ -1,9 +1,10 @@ -import React, { useState } from "react"; +import React from "react"; import { StepProps } from "../../../pages/project-wizard/ProjectWizard"; import DataElementsTable, { FieldName } from "./DataElementsTable"; -import Sidebar from "./Sidebar"; import { Id } from "../../../types/d2-api"; import DataElementsSet, { ProjectSelection } from "../../../models/dataElementsSet"; +import SectionsSidebar from "../../sections-sidebar/SectionsSidebar"; +import { useSectionsSidebar } from "../../sections-sidebar/sections-sidebar-hooks"; export interface DataElementsStepProps extends StepProps { onSelect(sectorId: Id, dataElementIds: Id[]): ProjectSelection; @@ -12,11 +13,7 @@ export interface DataElementsStepProps extends StepProps { const DataElementsStep: React.FC = props => { const { onChange, project, dataElementsSet, onSelect } = props; - const menuItems = React.useMemo( - () => project.sectors.map(sector => ({ id: sector.id, text: sector.displayName })), - [project] - ); - const [sectorId, setSectorId] = useState(menuItems.length > 0 ? menuItems[0].id : ""); + const { items: sectorItems, sectorId, setSector } = useSectionsSidebar(project); const onSelectionChange = React.useCallback( (dataElementIds: Id[]) => { @@ -31,21 +28,14 @@ const DataElementsStep: React.FC = props => { if (!sectorId) return null; return ( - setSectorId(item.id)} - contents={ -
- -
- } - /> + + + ); }; diff --git a/src/components/steps/data-elements/Sidebar.tsx b/src/components/steps/data-elements/Sidebar.tsx index 0f906a7a..9d7670f8 100644 --- a/src/components/steps/data-elements/Sidebar.tsx +++ b/src/components/steps/data-elements/Sidebar.tsx @@ -30,9 +30,9 @@ const useStyles = makeStyles((_theme: Theme) => ({ }, })); -type MenuItem = { id: string; text: string }; +export type MenuItem = { id: string; text: string }; -interface SidebarProps { +export interface SidebarProps { menuItems: MenuItem[]; currentMenuItemId?: string; onMenuItemClick: (menuItem: MenuItem) => void; diff --git a/src/components/steps/disaggregation/DisaggregationStep.tsx b/src/components/steps/disaggregation/DisaggregationStep.tsx index 67564984..671c78eb 100644 --- a/src/components/steps/disaggregation/DisaggregationStep.tsx +++ b/src/components/steps/disaggregation/DisaggregationStep.tsx @@ -1,8 +1,7 @@ import React from "react"; import { StepProps } from "../../../pages/project-wizard/ProjectWizard"; -import Sidebar from "../data-elements/Sidebar"; import DataElementsTable, { FieldName } from "../data-elements/DataElementsTable"; -import { Ref, Id } from "../../../types/d2-api"; +import { Id } from "../../../types/d2-api"; import { FilterKey } from "../data-elements/DataElementsFilters"; import { DataElement } from "../../../models/dataElementsSet"; import i18n from "../../../locales"; @@ -12,16 +11,11 @@ import NotInterestedIcon from "@material-ui/icons/NotInterested"; import Project from "../../../models/Project"; import { renderJoin } from "../../../utils/react"; import { getIds } from "../../../utils/dhis2"; +import { useSectionsSidebar } from "../../sections-sidebar/sections-sidebar-hooks"; +import SectionsSidebar from "../../sections-sidebar/SectionsSidebar"; const DisaggregationStep: React.FC = ({ project, onChange }) => { - const menuItems = React.useMemo( - () => project.sectors.map(sector => ({ id: sector.id, text: sector.displayName })), - [project] - ); - const [sectorId, setSectorId] = React.useState( - menuItems.length > 0 ? menuItems[0].id : "" - ); - const setSector = React.useCallback((sector: Ref) => setSectorId(sector.id), [setSectorId]); + const { items: sectorItems, sectorId, setSector } = useSectionsSidebar(project); const dataElementsSet = project.dataElementsSelection; const disaggregationItems = React.useMemo(() => { @@ -98,25 +92,18 @@ const DisaggregationStep: React.FC = ({ project, onChange }) => { }, [Covid19Column, setValues]); return ( - - - - } - /> + + + ); }; @@ -139,8 +126,6 @@ const Covid19Column: React.FC<{ return ; }; -const styles = { wrapper: { width: "100%" } }; - const initialColumns: FieldName[] = ["name", "code", "indicatorType", "peopleOrBenefit"]; const visibleFilters: FilterKey[] = ["indicatorType"]; From 8ce06e618e379485aa97d19008c3e40c5210b0ee Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Fri, 17 Jul 2020 11:27:45 +0200 Subject: [PATCH 08/28] Memoize data elements table columns getValue --- .../steps/data-elements/DataElementsTable.tsx | 35 ++++++++++--------- src/models/dataElementsSet.ts | 6 ++++ 2 files changed, 24 insertions(+), 17 deletions(-) diff --git a/src/components/steps/data-elements/DataElementsTable.tsx b/src/components/steps/data-elements/DataElementsTable.tsx index 3ef967b8..61a70783 100644 --- a/src/components/steps/data-elements/DataElementsTable.tsx +++ b/src/components/steps/data-elements/DataElementsTable.tsx @@ -14,7 +14,7 @@ import { makeStyles } from "@material-ui/core/styles"; import { Id } from "../../../types/d2-api"; import { renderJoin } from "../../../utils/react"; -// Add keys used in custom columns +// Column names must be known to the model interface, so we need to add keys used in custom columns type DataElement = DataElement_ & { isCovid19?: boolean }; export interface DataElementsTableProps { @@ -52,9 +52,9 @@ const sortableFields = [ ] as const; type SortableField = typeof sortableFields[number]; -// TODO: memoize should use de.id and step key -//const getName = _.memoize(_getName, dataElement => dataElement.id); -const getName = _getName; +const getName = _.memoize(_getName, (dataElement, arePaired, showGuidance) => + [dataElement.id, arePaired, showGuidance].join("-") +); export type FieldName = | "name" @@ -74,7 +74,7 @@ const DataElementsTable: React.FC = props => { visibleFilters, onlySelected, showGuidance = true, - customColumns = [], + customColumns, actions, } = props; const snackbar = useSnackbar(); @@ -136,50 +136,51 @@ const DataElementsTable: React.FC = props => { ); const allColumns = React.useMemo(() => { + const paired = dataElementsSet.arePairedGrouped; const columns = [ { name: "name" as const, text: i18n.t("Name"), sortable: true, - getValue: (de: DataElement) => getName(de, showGuidance), + getValue: (de: DataElement) => getName(de, paired, showGuidance), }, { name: "code" as const, text: i18n.t("Code"), sortable: true, - getValue: withPaired("code"), + getValue: withPaired(paired, "code"), }, { name: "indicatorType" as const, text: i18n.t("Indicator Type"), sortable: true }, { name: "peopleOrBenefit" as const, text: i18n.t("People / Benefit"), sortable: true, - getValue: withPaired("peopleOrBenefit"), + getValue: withPaired(paired, "peopleOrBenefit"), }, { name: "series" as const, text: i18n.t("Series"), sortable: true, - getValue: withPaired("series"), + getValue: withPaired(paired, "series"), }, { name: "countingMethod" as const, text: i18n.t("Counting Method"), sortable: true, - getValue: withPaired("countingMethod"), + getValue: withPaired(paired, "countingMethod"), }, { name: "externals" as const, text: i18n.t("Externals"), sortable: true, - getValue: withPaired("externals", externals => externals.join(", ")), + getValue: withPaired(paired, "externals", externals => externals.join(", ")), }, ]; const columnsToShow: TableColumn[] = _(columns) .keyBy(column => column.name) .at(initialColumns) .value(); - return _.concat(columnsToShow, customColumns); + return _.concat(columnsToShow, customColumns || []); }, [initialColumns, customColumns, showGuidance]); if (!sectorId) return null; @@ -216,7 +217,7 @@ const useStyles = makeStyles(() => ({ }, })); -function _getName(dataElement: DataElement, showGuidance: boolean): ReactNode { +function _getName(dataElement: DataElement, _paired: boolean, showGuidance: boolean): ReactNode { return ( ); @@ -279,13 +280,14 @@ function getTooltipContents(dataElement: DataElement) { } function withPaired( + paired: boolean, field: SortableField & Field, mapper?: (val: DataElement[Field]) => string ) { const mapper_ = mapper || _.identity; const render = function(dataElement: DataElement, _value: ReactNode) { - const paired = dataElement.pairedDataElements; - const values = [dataElement, ...paired].map(de => mapper_(de[field]) || "-"); + const pairedDes = dataElement.pairedDataElements; + const values = [dataElement, ...pairedDes].map(de => mapper_(de[field]) || "-"); // uses the column node key (if present) as sorting key, so let's set it // to a value that performs a composite (dataElement[FIELD], dataElement.code) ordering. const value = dataElement[field]; @@ -294,8 +296,7 @@ function withPaired( return {renderJoin(values,
)}
; }; - //return _.memoize(render, dataElement => dataElement.id); - return render; + return _.memoize(render, (paired, dataElement) => [dataElement.id, paired].join("-")); } function getSelectionMessage(dataElements: DataElement[], action: string): string | null { diff --git a/src/models/dataElementsSet.ts b/src/models/dataElementsSet.ts index 743b7c63..3a74c539 100644 --- a/src/models/dataElementsSet.ts +++ b/src/models/dataElementsSet.ts @@ -58,6 +58,7 @@ interface DataElementsData { dataElementsAllBySector: BySector; dataElementsBySector: BySector; selected: BySector; + groupPaired: boolean; } export interface SelectionInfo { @@ -188,9 +189,14 @@ export default class DataElementsSet { dataElementsAllBySector, dataElementsBySector: desBySector, selected: {}, + groupPaired, }); } + get arePairedGrouped() { + return this.data.groupPaired; + } + updateSuperSet(superSet: DataElementsSet): DataElementsSet { return new DataElementsSet(this.config, { ...this.data, From 9edba603fe22835cb3f3ff7c155e903c853fd75c Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Fri, 17 Jul 2020 11:59:22 +0200 Subject: [PATCH 09/28] Add missing dependencies to hook --- .../sections-sidebar/sections-sidebar-hooks.tsx | 9 +++++---- src/components/steps/data-elements/DataElementsTable.tsx | 2 +- .../steps/disaggregation/DisaggregationStep.tsx | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/components/sections-sidebar/sections-sidebar-hooks.tsx b/src/components/sections-sidebar/sections-sidebar-hooks.tsx index 451f757a..b3662ff7 100644 --- a/src/components/sections-sidebar/sections-sidebar-hooks.tsx +++ b/src/components/sections-sidebar/sections-sidebar-hooks.tsx @@ -3,11 +3,12 @@ import Project from "../../models/Project"; import { Ref } from "../../types/d2-api"; export function useSectionsSidebar(project: Project) { - const items = React.useMemo( - () => project.sectors.map(sector => ({ id: sector.id, text: sector.displayName })), - [project] - ); + const items = React.useMemo(() => { + return project.sectors.map(sector => ({ id: sector.id, text: sector.displayName })); + }, [project]); + const [sectorId, setSectorId] = React.useState(items.length > 0 ? items[0].id : ""); + const setSector = React.useCallback((sector: Ref) => setSectorId(sector.id), [setSectorId]); return { items, sectorId, setSector }; diff --git a/src/components/steps/data-elements/DataElementsTable.tsx b/src/components/steps/data-elements/DataElementsTable.tsx index 61a70783..ddd3e803 100644 --- a/src/components/steps/data-elements/DataElementsTable.tsx +++ b/src/components/steps/data-elements/DataElementsTable.tsx @@ -82,7 +82,7 @@ const DataElementsTable: React.FC = props => { useEffect(() => setFilter({}), [sectorId]); - const fullFilter = { ...filter, sectorId, onlySelected }; + const fullFilter = { onlySelected, ...filter, sectorId }; const dataElements = useMemo(() => dataElementsSet.get(fullFilter), [ dataElementsSet, diff --git a/src/components/steps/disaggregation/DisaggregationStep.tsx b/src/components/steps/disaggregation/DisaggregationStep.tsx index 671c78eb..9ea3cb0f 100644 --- a/src/components/steps/disaggregation/DisaggregationStep.tsx +++ b/src/components/steps/disaggregation/DisaggregationStep.tsx @@ -32,7 +32,7 @@ const DisaggregationStep: React.FC = ({ project, onChange }) => { const newProject = project.setObj({ disaggregation: newDisaggregation }); onChange(newProject); }, - [onChange, project] + [onChange, project, sectorId] ); const customColumns = React.useMemo(() => { From 5f24fff36a46f469a0c30f788bea4ab68e9b0627 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 09:52:59 +0200 Subject: [PATCH 10/28] Refactor and notes for covid-19 disaggregation --- src/models/Disaggregation.ts | 34 ++++++++++++++++++++++------------ src/models/Project.ts | 2 +- src/models/dataElementsSet.ts | 6 +++--- 3 files changed, 26 insertions(+), 16 deletions(-) diff --git a/src/models/Disaggregation.ts b/src/models/Disaggregation.ts index 29172145..06bbea26 100644 --- a/src/models/Disaggregation.ts +++ b/src/models/Disaggregation.ts @@ -3,6 +3,17 @@ import { Id, Ref } from "../types/d2-api"; import { Config } from "./Config"; import { getRef, haveSameRefs } from "../utils/dhis2"; +/* Custom disaggregation for data elements in target/actual data sets. + +- If a data element is not selected as COVID-19, simply use its category combo. +- If a data element is selected as COVID-19: + - Get its category combo, + - Extract its categories, + - Add the COVID-19 category to the previous set + - Find a category combo containing those categories. + - Use that category combo as disaggregation for this data element. +*/ + interface Data { mapping: Record; dataElementsById: Record; @@ -17,13 +28,12 @@ interface DataSetElement { export class Disaggregation { constructor(private config: Config, private data: Data) {} - static build(config: Config, mapping: Data["mapping"] = {}) { - const data = { + static getData(config: Config, mapping: Data["mapping"] = {}): Data { + return { dataElementsById: _.keyBy(config.dataElements, de => de.id), categoryCombosById: _.keyBy(config.allCategoryCombos, cc => cc.id), mapping: mapping, }; - return new Disaggregation(config, data); } static buildFromDataSetElements(config: Config, dataSetElements: DataSetElement[]) { @@ -34,7 +44,7 @@ export class Disaggregation { ? categoryCombosById[dse.categoryCombo.id] : null; const isCovid19 = categoryCombo - ? _(categoryCombo.categories || []).some( + ? _(categoryCombo.categories).some( category => category.id === config.categories.covid19.id ) : false; @@ -42,8 +52,9 @@ export class Disaggregation { }) .fromPairs() .value(); + const data = this.getData(config, covidMapping); - return Disaggregation.build(config, covidMapping); + return new Disaggregation(config, data); } private getDefault(message: string): Ref { @@ -72,21 +83,20 @@ export class Disaggregation { const categoryComboWithCovid19 = config.allCategoryCombos.find(cc => haveSameRefs(cc.categories, categoriesWithCovid19) ); - return categoryComboWithCovid19 - ? getRef(categoryComboWithCovid19) - : this.getDefault( - `Category combo related with covid19 not found: ${deCategoryCombo.id}` - ); + if (!categoryComboWithCovid19) + console.debug(`Category combo with covid19 not found: ${deCategoryCombo.id}`); + + return getRef(categoryComboWithCovid19 ? categoryComboWithCovid19 : deCategoryCombo); } } setCovid19(dataElementIds: Id[], isSet: boolean): Disaggregation { - const update = _(dataElementIds) + const mappingUpdate = _(dataElementIds) .filter(deId => _.has(this.data.dataElementsById, deId)) .map(deId => [deId, isSet]) .fromPairs() .value(); - const newData = { ...this.data, mapping: { ...this.data.mapping, ...update } }; + const newData = { ...this.data, mapping: { ...this.data.mapping, ...mappingUpdate } }; return new Disaggregation(this.config, newData); } diff --git a/src/models/Project.ts b/src/models/Project.ts index aa17ae78..d916edb9 100644 --- a/src/models/Project.ts +++ b/src/models/Project.ts @@ -405,7 +405,7 @@ class Project { id: generateUid(), dataElementsSelection, dataElementsMER, - disaggregation: Disaggregation.build(config), + disaggregation: Disaggregation.buildFromDataSetElements(config, []), sharing: ProjectSharing.getInitialSharing(config), initialData: undefined, }; diff --git a/src/models/dataElementsSet.ts b/src/models/dataElementsSet.ts index 3a74c539..cb607104 100644 --- a/src/models/dataElementsSet.ts +++ b/src/models/dataElementsSet.ts @@ -314,7 +314,7 @@ export default class DataElementsSet { return _.uniqBy(relatedDataElements, de => de.id); } - /* Return Global -> sub and paired relations, including source data elements */ + /* Return Sub -> Global and paired relations, including source data elements */ getGroupForDisaggregation(sectorId: Id, dataElementIds: Id[]): DataElement[] { const { dataElementsAllBySector } = this.data; const allDataElements = dataElementsAllBySector[sectorId] || []; @@ -331,8 +331,8 @@ export default class DataElementsSet { const relatedDataElements = _.compact( sourceDataElements.map(de => { - if (de.indicatorType === "global") { - const key = ["sub", de.series].join("."); + if (de.indicatorType === "sub") { + const key = ["global", de.series].join("."); return _(allDataElementsByKey).get(key, null); } else { return null; From fc97e38e198fe00cb7001181ebb4aec674784fa2 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 09:53:15 +0200 Subject: [PATCH 11/28] Fix withPaired memoization --- src/components/steps/data-elements/DataElementsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/steps/data-elements/DataElementsTable.tsx b/src/components/steps/data-elements/DataElementsTable.tsx index ddd3e803..6e6a314e 100644 --- a/src/components/steps/data-elements/DataElementsTable.tsx +++ b/src/components/steps/data-elements/DataElementsTable.tsx @@ -296,7 +296,7 @@ function withPaired( return {renderJoin(values,
)}
; }; - return _.memoize(render, (paired, dataElement) => [dataElement.id, paired].join("-")); + return _.memoize(render, dataElement => [dataElement.id, paired].join("-")); } function getSelectionMessage(dataElements: DataElement[], action: string): string | null { From c1ea661790423797ff785940e7c52f94d375bd11 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 09:53:31 +0200 Subject: [PATCH 12/28] Default value for empty value in details box --- src/pages/projects-list/ProjectsList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/projects-list/ProjectsList.tsx b/src/pages/projects-list/ProjectsList.tsx index 6ddae034..faaee3d1 100644 --- a/src/pages/projects-list/ProjectsList.tsx +++ b/src/pages/projects-list/ProjectsList.tsx @@ -331,10 +331,10 @@ function getSharingInfo(project: ProjectForList) { const { sharing } = project; return ( - {i18n.t("Users")}: {sharing.userAccesses.map(ua => ua.name).join(", ")} + {i18n.t("Users")}: {sharing.userAccesses.map(ua => ua.name).join(", ") || "-"}
{i18n.t("User groups")}:{" "} - {sharing.userGroupAccesses.map(ua => ua.name).join(", ")} + {sharing.userGroupAccesses.map(ua => ua.name).join(", ") || "-"}
); } From ea1ec35a232a91ea7bd35e1e952cb93d19dad483 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 09:56:08 +0200 Subject: [PATCH 13/28] Update d2-ui-components version --- package.json | 2 +- yarn.lock | 15 ++++++++++----- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 87703bb3..93bf1355 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "d2": "^31.8.1", "d2-api": "1.0.0", "d2-manifest": "^1.0.0", - "d2-ui-components": "1.5.0", + "d2-ui-components": "1.5.1-beta.6", "exceljs": "^3.5.0", "font-awesome": "^4.7.0", "lodash": "^4.17.15", diff --git a/yarn.lock b/yarn.lock index 10c09eba..48ab017f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4749,10 +4749,10 @@ d2-manifest@^1.0.0: minimist "^1.1.0" readline-sync "^1.4.1" -d2-ui-components@1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/d2-ui-components/-/d2-ui-components-1.5.0.tgz#257bfd7cb4b29acac507082302761965bc41d95a" - integrity sha512-fqbegAs/HLClbAL1G44SteH/rAVfKqxvrl96UyKsezsO/N8Og3GtIlHnxSzB3d8DRbwek08soyEKO2b/f+UckQ== +d2-ui-components@1.5.1-beta.6: + version "1.5.1-beta.6" + resolved "https://registry.npmjs.org/d2-ui-components/-/d2-ui-components-1.5.1-beta.6.tgz#98d5969025fd43be289ca4714e3b7657015ecc1b" + integrity sha512-EyrqohoM9PD2RAud8t3LAzn3OI56TKEKhcrXcSTNPx1zPkR7dnwg/msu9MFqNIH/bFYZw6ekaKQvTktI4CkOOQ== dependencies: "@date-io/core" "^1.3.6" "@date-io/moment" "^1.0.2" @@ -4762,7 +4762,7 @@ d2-ui-components@1.5.0: "@material-ui/pickers" "3.2.10" classnames "^2.2.6" downshift "^5.4.2" - lodash "4.17.15" + lodash "4.17.19" moment "^2.22.2" nano-memoize "1.1.10" node-sass "^4.12.0" @@ -9555,6 +9555,11 @@ lodash@4.17.15, "lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.15.0, lodash@^4.17.1 resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== +lodash@4.17.19: + version "4.17.19" + resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" + integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== + log-symbols@3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4" From 06b7df396fbd540849e478532a8c83f4da643902 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 10:08:32 +0200 Subject: [PATCH 14/28] Extract code from DataElementsTable --- .../steps/data-elements/DataElementsTable.tsx | 158 ++---------------- .../steps/data-elements/NameColumn.tsx | 53 ++++++ .../steps/data-elements/table-utils.tsx | 93 +++++++++++ 3 files changed, 160 insertions(+), 144 deletions(-) create mode 100644 src/components/steps/data-elements/NameColumn.tsx create mode 100644 src/components/steps/data-elements/table-utils.tsx diff --git a/src/components/steps/data-elements/DataElementsTable.tsx b/src/components/steps/data-elements/DataElementsTable.tsx index 6e6a314e..1159f4ee 100644 --- a/src/components/steps/data-elements/DataElementsTable.tsx +++ b/src/components/steps/data-elements/DataElementsTable.tsx @@ -1,4 +1,4 @@ -import React, { useState, useEffect, useMemo, ReactNode } from "react"; +import React, { useState, useEffect, useMemo } from "react"; import { ObjectsTable, useSnackbar, RowConfig, TableAction } from "d2-ui-components"; import { TablePagination, TableColumn, TableState, TableSorting } from "d2-ui-components"; import _ from "lodash"; @@ -9,13 +9,11 @@ import DataElementsSet, { SelectionInfo, DataElement as DataElement_, } from "../../../models/dataElementsSet"; -import { Tooltip } from "@material-ui/core"; -import { makeStyles } from "@material-ui/core/styles"; import { Id } from "../../../types/d2-api"; -import { renderJoin } from "../../../utils/react"; +import { onTableChange, withPaired, getName } from "./table-utils"; // Column names must be known to the model interface, so we need to add keys used in custom columns -type DataElement = DataElement_ & { isCovid19?: boolean }; +export type DataElement = DataElement_ & { isCovid19?: boolean }; export interface DataElementsTableProps { dataElementsSet: DataElementsSet; @@ -40,9 +38,16 @@ const initialSorting: TableSorting = { order: "asc" as const, }; -const searchBoxColumns = ["name" as const, "code" as const, "search" as const]; +export type FieldName = + | "name" + | "code" + | "peopleOrBenefit" + | "series" + | "countingMethod" + | "externals" + | "indicatorType"; -const sortableFields = [ +export const sortableFields = [ "name", "code", "peopleOrBenefit", @@ -50,20 +55,10 @@ const sortableFields = [ "countingMethod", "externals", ] as const; -type SortableField = typeof sortableFields[number]; -const getName = _.memoize(_getName, (dataElement, arePaired, showGuidance) => - [dataElement.id, arePaired, showGuidance].join("-") -); +export type SortableField = typeof sortableFields[number]; -export type FieldName = - | "name" - | "code" - | "peopleOrBenefit" - | "series" - | "countingMethod" - | "externals" - | "indicatorType"; +const searchBoxColumns = ["name" as const, "code" as const, "search" as const]; const DataElementsTable: React.FC = props => { const { @@ -203,129 +198,4 @@ const DataElementsTable: React.FC = props => { ); }; -const useStyles = makeStyles(() => ({ - tooltip: { - maxWidth: 800, - border: "1px solid #dadde9", - backgroundColor: "#616161", - }, - tooltipContents: { - padding: 2, - fontSize: "1.5em", - lineHeight: "1.3em", - fontWeight: "normal", - }, -})); - -function _getName(dataElement: DataElement, _paired: boolean, showGuidance: boolean): ReactNode { - return ( - - ); -} - -const NameColumn: React.FC<{ dataElement: DataElement; showGuidance: boolean }> = ({ - dataElement, - showGuidance, -}) => { - const dataElements = [dataElement, ...dataElement.pairedDataElements]; - const classes = useStyles(); - const tooltips = renderJoin( - dataElements.map(dataElement => - showGuidance ? ( - - {getTooltipContents(dataElement)} - - } - classes={{ tooltip: classes.tooltip }} - > - {dataElement.name} - - ) : ( - {dataElement.name} - ) - ), -
- ); - - return {tooltips}; -}; - -function getTooltipContents(dataElement: DataElement) { - const { externalsDescription, description } = dataElement; - return ( - -
- {dataElement.code} - {dataElement.name} -
-
- {externalsDescription && ( -
- {i18n.t("Externals")}: - {externalsDescription} -
- )} - {description && ( -
- {i18n.t("Guidance")}: - {description} -
- )} -
- ); -} - -function withPaired( - paired: boolean, - field: SortableField & Field, - mapper?: (val: DataElement[Field]) => string -) { - const mapper_ = mapper || _.identity; - const render = function(dataElement: DataElement, _value: ReactNode) { - const pairedDes = dataElement.pairedDataElements; - const values = [dataElement, ...pairedDes].map(de => mapper_(de[field]) || "-"); - // uses the column node key (if present) as sorting key, so let's set it - // to a value that performs a composite (dataElement[FIELD], dataElement.code) ordering. - const value = dataElement[field]; - const code = dataElement.code; - const key = value + "-" + code; - return {renderJoin(values,
)}
; - }; - - return _.memoize(render, dataElement => [dataElement.id, paired].join("-")); -} - -function getSelectionMessage(dataElements: DataElement[], action: string): string | null { - return dataElements.length === 0 - ? null - : [ - i18n.t("Those related data elements have been automatically {{action}}:", { action }), - "", - ...dataElements.map(de => `[${de.code}] ${de.name} (${de.indicatorType})`), - ].join("\n"); -} - -function showSelectionMessage(snackbar: any, selectionUpdate: SelectionInfo): void { - const msg = _.compact([ - getSelectionMessage(selectionUpdate.selected || [], i18n.t("selected")), - ...(selectionUpdate.messages || []), - ]).join("\n\n"); - - if (msg) snackbar.info(msg); -} - -function onTableChange( - onSelectionChange: (selectedIds: Id[]) => SelectionInfo, - snackbar: any, - state: TableState -): void { - const selectedIds = state.selection.map(de => de.id); - const selectionInfo = onSelectionChange(selectedIds); - if (selectionInfo) showSelectionMessage(snackbar, selectionInfo); -} - export default React.memo(DataElementsTable); diff --git a/src/components/steps/data-elements/NameColumn.tsx b/src/components/steps/data-elements/NameColumn.tsx new file mode 100644 index 00000000..839f8272 --- /dev/null +++ b/src/components/steps/data-elements/NameColumn.tsx @@ -0,0 +1,53 @@ +import React from "react"; +import { makeStyles } from "@material-ui/core/styles"; +import Tooltip from "@material-ui/core/Tooltip"; + +import { renderJoin } from "../../../utils/react"; +import { DataElement } from "./DataElementsTable"; +import { getTooltipContents } from "./table-utils"; + +export const NameColumn: React.FC<{ dataElement: DataElement; showGuidance: boolean }> = ({ + dataElement, + showGuidance, +}) => { + const dataElements = [dataElement, ...dataElement.pairedDataElements]; + const classes = useStyles(); + const tooltips = renderJoin( + dataElements.map(dataElement => + showGuidance ? ( + + {getTooltipContents(dataElement)} + + } + classes={{ tooltip: classes.tooltip }} + > + {dataElement.name} + + ) : ( + {dataElement.name} + ) + ), +
+ ); + + return {tooltips}; +}; + +const useStyles = makeStyles(() => ({ + tooltip: { + maxWidth: 800, + border: "1px solid #dadde9", + backgroundColor: "#616161", + }, + tooltipContents: { + padding: 2, + fontSize: "1.5em", + lineHeight: "1.3em", + fontWeight: "normal", + }, +})); diff --git a/src/components/steps/data-elements/table-utils.tsx b/src/components/steps/data-elements/table-utils.tsx new file mode 100644 index 00000000..d0fffc7b --- /dev/null +++ b/src/components/steps/data-elements/table-utils.tsx @@ -0,0 +1,93 @@ +import React from "react"; +import _ from "lodash"; +import { NameColumn } from "./NameColumn"; +import { DataElement, SortableField } from "./DataElementsTable"; +import { ReactNode } from "react"; +import { SelectionInfo } from "../../../models/dataElementsSet"; +import { TableState } from "d2-ui-components"; +import { Id } from "../../../types/d2-api"; +import i18n from "../../../locales"; +import { renderJoin } from "../../../utils/react"; + +export const getName = _.memoize(_getName, (dataElement, arePaired, showGuidance) => + [dataElement.id, arePaired, showGuidance].join("-") +); + +function _getName(dataElement: DataElement, _paired: boolean, showGuidance: boolean): ReactNode { + return ( + + ); +} + +export function getTooltipContents(dataElement: DataElement) { + const { externalsDescription, description } = dataElement; + return ( + +
+ {dataElement.code} - {dataElement.name} +
+
+ {externalsDescription && ( +
+ {i18n.t("Externals")}: + {externalsDescription} +
+ )} + {description && ( +
+ {i18n.t("Guidance")}: + {description} +
+ )} +
+ ); +} + +export function withPaired( + paired: boolean, + field: SortableField & Field, + mapper?: (val: DataElement[Field]) => string +) { + const mapper_ = mapper || _.identity; + const render = function(dataElement: DataElement, _value: ReactNode) { + const pairedDes = dataElement.pairedDataElements; + const values = [dataElement, ...pairedDes].map(de => mapper_(de[field]) || "-"); + // uses the column node key (if present) as sorting key, so let's set it + // to a value that performs a composite (dataElement[FIELD], dataElement.code) ordering. + const value = dataElement[field]; + const code = dataElement.code; + const key = value + "-" + code; + return {renderJoin(values,
)}
; + }; + + return _.memoize(render, dataElement => [dataElement.id, paired].join("-")); +} + +export function getSelectionMessage(dataElements: DataElement[], action: string): string | null { + return dataElements.length === 0 + ? null + : [ + i18n.t("Those related data elements have been automatically {{action}}:", { action }), + "", + ...dataElements.map(de => `[${de.code}] ${de.name} (${de.indicatorType})`), + ].join("\n"); +} + +export function showSelectionMessage(snackbar: any, selectionUpdate: SelectionInfo): void { + const msg = _.compact([ + getSelectionMessage(selectionUpdate.selected || [], i18n.t("selected")), + ...(selectionUpdate.messages || []), + ]).join("\n\n"); + + if (msg) snackbar.info(msg); +} + +export function onTableChange( + onSelectionChange: (selectedIds: Id[]) => SelectionInfo, + snackbar: any, + state: TableState +): void { + const selectedIds = state.selection.map(de => de.id); + const selectionInfo = onSelectionChange(selectedIds); + if (selectionInfo) showSelectionMessage(snackbar, selectionInfo); +} From 204dc7370d8c37ff392cbacf8f5b45a43143b677 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 11:20:45 +0200 Subject: [PATCH 15/28] Add console.error on save error --- src/components/steps/save/SaveStep.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/steps/save/SaveStep.tsx b/src/components/steps/save/SaveStep.tsx index 8b3851e9..8bdff629 100644 --- a/src/components/steps/save/SaveStep.tsx +++ b/src/components/steps/save/SaveStep.tsx @@ -180,6 +180,7 @@ function useSave(project: Project, action: StepProps["action"], projectInfo: Rea } } catch (err) { setSaving(false); + console.error(err); snackbar.error(err.message || err.toString()); } }, [project, setSaving, history, snackbar, action, api, appConfig, isDev, projectInfo]); From b2ecb4a6cbed7c29621570150f1ef7ba2810a188 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 11:21:44 +0200 Subject: [PATCH 16/28] Throw error when a config item cannot be loaded --- src/models/Config.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/models/Config.ts b/src/models/Config.ts index 8bc29e8f..afc968af 100644 --- a/src/models/Config.ts +++ b/src/models/Config.ts @@ -317,12 +317,18 @@ function indexObjects; const objects = metadata[key]; - return _(objects) + const indexedObjects = _(objects) .keyBy(obj => _(keyByCodes).get(obj.code)) .pickBy() .value() as RetValue; -} + const missingKeys = _.difference(_.values(keyByCodes) as string[], _.keys(indexedObjects)); + if (!_.isEmpty(missingKeys)) { + throw new Error(`[Config] Missing records for ${key}: ${missingKeys.join(", ")}`); + } else { + return indexedObjects; + } +} export async function getConfig(api: D2Api): Promise { return new ConfigLoader(api).get(); } From cc85a759fa2d6494264e28f6ac4481a44895c77c Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 11:22:29 +0200 Subject: [PATCH 17/28] Add cypress test for project disaggregation --- cypress/integration/00.project-create.spec.js | 17 +++++++++++++++-- cypress/integration/07.project-edit.spec.js | 5 ++++- .../steps/disaggregation/DisaggregationStep.tsx | 6 +++++- 3 files changed, 24 insertions(+), 4 deletions(-) diff --git a/cypress/integration/00.project-create.spec.js b/cypress/integration/00.project-create.spec.js index add947e1..b1bdc174 100644 --- a/cypress/integration/00.project-create.spec.js +++ b/cypress/integration/00.project-create.spec.js @@ -96,9 +96,20 @@ describe("Projects - Create", () => { cy.contains("Next").click(); + // Disaggregation + + cy.waitForStep("Disaggregation"); + cy.get("[data-test=covid19-selector-B010200]") + .contains("No") + .click(); + cy.get(".MuiPopover-paper") + .contains("Yes") + .click(); + cy.contains("Next").click(); + // Sharing - cy.waitForStep("Sharing"); + cy.waitForStep("Username Access"); cy.contains("System Admin"); cy.contains("Project Monitoring Admin"); cy.contains("Country Admin Bahamas"); @@ -130,7 +141,9 @@ describe("Projects - Create", () => { cy.contains("Agriculture"); cy.contains("Livelihood"); - cy.contains("# of agriculture groups receiving support for improved livelihoods - B010200"); + cy.contains( + "# of agriculture groups receiving support for improved livelihoods - B010200 [COVID-19]" + ); cy.contains("# of people trained in livelihood topics - P020100 [MER]"); cy.server() diff --git a/cypress/integration/07.project-edit.spec.js b/cypress/integration/07.project-edit.spec.js index 05439980..28d7e24a 100644 --- a/cypress/integration/07.project-edit.spec.js +++ b/cypress/integration/07.project-edit.spec.js @@ -30,7 +30,10 @@ describe("Projects - Edit", () => { cy.waitForStep("Selection of MER Indicators"); cy.contains("Next").click(); - cy.waitForStep("Sharing"); + cy.waitForStep("Disaggregation"); + cy.contains("Next").click(); + + cy.waitForStep("Username Access"); cy.contains("Next").click(); cy.waitForStep("Summary and Save"); diff --git a/src/components/steps/disaggregation/DisaggregationStep.tsx b/src/components/steps/disaggregation/DisaggregationStep.tsx index 9ea3cb0f..253ec709 100644 --- a/src/components/steps/disaggregation/DisaggregationStep.tsx +++ b/src/components/steps/disaggregation/DisaggregationStep.tsx @@ -123,7 +123,11 @@ const Covid19Column: React.FC<{ const value = project.disaggregation.isCovid19(dataElement.id); - return ; + return ( +
+ +
+ ); }; const initialColumns: FieldName[] = ["name", "code", "indicatorType", "peopleOrBenefit"]; From 8eb15aa607f09435517cdb604e7938822cf0b40b Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 12:04:34 +0200 Subject: [PATCH 18/28] Update tests to latest metadata --- src/models/__tests__/Project.spec.ts | 8 +- src/models/__tests__/ProjectDb.spec.ts | 45 +- src/models/__tests__/ProjectDownload.spec.ts | 18 +- src/models/__tests__/config.json | 14619 +++++++++++------ src/models/__tests__/project-data.ts | 4 +- src/models/dataElementsSet.ts | 2 + src/models/dev-project.ts | 6 +- src/utils/tests.ts | 25 + 8 files changed, 10003 insertions(+), 4724 deletions(-) create mode 100644 src/utils/tests.ts diff --git a/src/models/__tests__/Project.spec.ts b/src/models/__tests__/Project.spec.ts index 7a2bc676..812f9937 100644 --- a/src/models/__tests__/Project.spec.ts +++ b/src/models/__tests__/Project.spec.ts @@ -120,7 +120,7 @@ describe("Project", () => { it("has data element sets", () => { expect( project.dataElementsSelection.get({ onlySelected: true }).map(de => de.id) - ).toEqual(["u24zk6wAgFE", "yMqK9DKbA3X"]); + ).toEqual(["yMqK9DKbA3X", "u24zk6wAgFE"]); expect(project.dataElementsMER.get({ onlySelected: true }).map(de => de.id)).toEqual([ "u24zk6wAgFE", ]); @@ -261,7 +261,7 @@ describe("Project", () => { it("requires at least one data element by sector", async () => { const project = (await getProject()).setObj({ sectors: [ - { id: "mGQ5ckOTU8A", displayName: "Agriculture", code: "SECTOR_AGRICULTURE" }, + { id: "ieyBABjYyHO", displayName: "Agriculture", code: "SECTOR_AGRICULTURE" }, { id: "GkiSljtLcOI", displayName: "Livelihood", code: "SECTOR_LIVELIHOOD" }, ], }); @@ -270,7 +270,7 @@ describe("Project", () => { "The following sectors have no indicators selected: Agriculture, Livelihood", ]); - const { project: project2 } = project.updateDataElementsSelection("mGQ5ckOTU8A", [ + const { project: project2 } = project.updateDataElementsSelection("ieyBABjYyHO", [ "qQy0N1xdwQ1", ]); const errors2 = await project2.validate(["dataElementsSelection"]); @@ -279,7 +279,7 @@ describe("Project", () => { ]); const { project: project3 } = project2 - .updateDataElementsSelection("mGQ5ckOTU8A", ["qQy0N1xdwQ1"]) + .updateDataElementsSelection("ieyBABjYyHO", ["qQy0N1xdwQ1"]) .project.updateDataElementsSelection("GkiSljtLcOI", ["iyQBe9Xv7bk"]); const errors3 = await project3.validate(["dataElementsSelection"]); expect(errors3.dataElementsSelection).toEqual([]); diff --git a/src/models/__tests__/ProjectDb.spec.ts b/src/models/__tests__/ProjectDb.spec.ts index 048a3a21..52e2f6f3 100644 --- a/src/models/__tests__/ProjectDb.spec.ts +++ b/src/models/__tests__/ProjectDb.spec.ts @@ -1,6 +1,7 @@ import { getMockApi } from "../../types/d2-api"; import ProjectDb from "../ProjectDb"; import { getProject } from "./project-data"; +import { logUnknownRequest } from "../../utils/tests"; const { api, mock } = getMockApi(); @@ -44,11 +45,13 @@ describe("ProjectDb", () => { mock.onPut("/organisationUnits/WGC0DJ0YSis", expectedOrgUnitPut).replyOnce(200); - mock.onPost( + mock.onPut( "/dataStore/project-monitoring-app/project-WGC0DJ0YSis", expectedDataStoreMer ).replyOnce(200); + logUnknownRequest(mock); + jest.spyOn(Date, "now").mockReturnValueOnce(new Date("2019/12/15").getTime()); const { response, project: savedProject } = await new ProjectDb(project).save(); @@ -144,7 +147,7 @@ const expectedOrgUnitPut = { const expectedSectionsMetadataPost = { sections: [ { - id: "qQopuH2XmFM", + id: "iSeufpoED2g", dataSet: { id: "SCS4Dusnfdd", }, @@ -156,10 +159,10 @@ const expectedSectionsMetadataPost = { id: "WS8XV4WWPE7", }, { - id: "ik0ICagvIjm", + id: "K6mAC5SiO29", }, { - id: "K6mAC5SiO29", + id: "ik0ICagvIjm", }, ], greyedFields: [], @@ -183,7 +186,7 @@ const expectedSectionsMetadataPost = { greyedFields: [], }, { - id: "Kg4EmzighjA", + id: "eY8nZ7go4hl", dataSet: { id: "CwUxT9UIX3z", }, @@ -195,10 +198,10 @@ const expectedSectionsMetadataPost = { id: "WS8XV4WWPE7", }, { - id: "ik0ICagvIjm", + id: "K6mAC5SiO29", }, { - id: "K6mAC5SiO29", + id: "ik0ICagvIjm", }, ], greyedFields: [], @@ -405,7 +408,7 @@ const expectedMetadataPost = { expiryDays: 0, sections: [ { - id: "qQopuH2XmFM", + id: "iSeufpoED2g", code: "SECTOR_AGRICULTURE_SCS4Dusnfdd", }, { @@ -569,7 +572,7 @@ const expectedMetadataPost = { expiryDays: 11, sections: [ { - id: "Kg4EmzighjA", + id: "eY8nZ7go4hl", code: "SECTOR_AGRICULTURE_CwUxT9UIX3z", }, { @@ -988,7 +991,7 @@ const expectedMetadataPost = { ], }, { - code: "NEW_RECURRING", + code: "NEW_RETURNING", id: "a0Cy1qwUuZv", categoryOptions: [ { @@ -996,7 +999,7 @@ const expectedMetadataPost = { id: "S2y8dcmR2kD", }, { - code: "RECURRING", + code: "RETURNING", id: "CyILz2yY8ey", }, ], @@ -1148,10 +1151,16 @@ const expectedMetadataPost = { id: "S2y8dcmR2kD", categoryOptionCombos: [ { - id: "nwv02VfyQuz", + id: "UU2P0YSJM8A", }, { - id: "UU2P0YSJM8A", + id: "bOokLlHM9no", + }, + { + id: "kx33GL2khoi", + }, + { + id: "nwv02VfyQuz", }, ], }, @@ -1704,10 +1713,16 @@ const expectedMetadataPost = { id: "S2y8dcmR2kD", categoryOptionCombos: [ { - id: "nwv02VfyQuz", + id: "UU2P0YSJM8A", }, { - id: "UU2P0YSJM8A", + id: "bOokLlHM9no", + }, + { + id: "kx33GL2khoi", + }, + { + id: "nwv02VfyQuz", }, ], }, diff --git a/src/models/__tests__/ProjectDownload.spec.ts b/src/models/__tests__/ProjectDownload.spec.ts index c5fd868f..9d091e3d 100644 --- a/src/models/__tests__/ProjectDownload.spec.ts +++ b/src/models/__tests__/ProjectDownload.spec.ts @@ -48,7 +48,7 @@ describe("ProjectDownload", () => { ({ filename, buffer } = await project.download()); workbook = new ExcelJS.Workbook(); await workbook.xlsx.load(buffer); - // await workbook.xlsx.writeFile("test.xlsx"); + // await workbook.xlsx.writeFile("test.xlsx"); // TO DEBUG }); it("creates a XLSX-named file", async () => { @@ -225,7 +225,7 @@ describe("ProjectDownload", () => { undefined, undefined, undefined, - "Recurring", + "Returning", 12, 14, 5, @@ -265,7 +265,7 @@ describe("ProjectDownload", () => { undefined, undefined, undefined, - "Male Recurring", + "Male Returning", 2, 0, 0, @@ -277,7 +277,7 @@ describe("ProjectDownload", () => { undefined, undefined, undefined, - "Female Recurring", + "Female Returning", 6, 0, 0, @@ -317,7 +317,7 @@ describe("ProjectDownload", () => { undefined, undefined, undefined, - "Recurring", + "Returning", 12, 10, 6, @@ -357,7 +357,7 @@ describe("ProjectDownload", () => { undefined, undefined, undefined, - "Male Recurring", + "Male Returning", 9, 0, 0, @@ -369,7 +369,7 @@ describe("ProjectDownload", () => { undefined, undefined, undefined, - "Female Recurring", + "Female Returning", 3, 0, 0, @@ -409,7 +409,7 @@ describe("ProjectDownload", () => { undefined, undefined, undefined, - "Recurring", + "Returning", 0, 0, 0, @@ -449,7 +449,7 @@ describe("ProjectDownload", () => { undefined, undefined, undefined, - "Male Recurring", + "Male Returning", 0, 0, 0, diff --git a/src/models/__tests__/config.json b/src/models/__tests__/config.json index d422c801..9bf1d181 100644 --- a/src/models/__tests__/config.json +++ b/src/models/__tests__/config.json @@ -27,22 +27,27 @@ "mainSector": "PM_MAIN_SECTOR" }, "categories": { + "default": "default", "targetActual": "ACTUAL_TARGET", "gender": "GENDER", - "newRecurring": "NEW_RECURRING" + "newRecurring": "NEW_RETURNING", + "covid19": "COVID19" }, "categoryCombos": { + "default": "default", "targetActual": "ACTUAL_TARGET", - "genderNewRecurring": "GENDER_NEW_RECURRING", - "default": "default" + "covid19": "COVID19", + "genderNewRecurring": "NEW_RETURNING_GENDER", + "genderNewRecurringCovid19": "COVID19_NEW_RETURNING_GENDER" }, "categoryOptions": { "target": "TARGET", "actual": "ACTUAL", "new": "NEW", - "recurring": "RECURRING", + "recurring": "RETURNING", "male": "MALE", - "female": "FEMALE" + "female": "FEMALE", + "covid19": "COVID19" }, "dataElementGroups": { "global": "GLOBAL", @@ -75,6 +80,7 @@ "id": "M5zQapPyTZI", "displayName": "admin admin", "userCredentials": { + "username": "admin", "userRoles": [ { "name": "PM Admin" @@ -115,136 +121,137 @@ { "name": "PM Feedback" } - ] + ], + "username": "admin" }, "sectors": [ { "code": "SECTOR_AGRICULTURE", - "id": "mGQ5ckOTU8A", + "id": "ieyBABjYyHO", "displayName": "Agriculture", "dataElements": [ { - "id": "q8C2wnYFK3T" - }, - { - "id": "mog7WefRWEM" + "id": "akYJbGDrNVm" }, { "id": "WS8XV4WWPE7" }, { - "id": "SaUjrYpA3ZK" + "id": "y2uyhyc7kqW" }, { - "id": "Ou41h46tMcD" + "id": "K6mAC5SiO29" }, { - "id": "aqCOXJ5URiL" + "id": "m0OkH08ROjX" }, { - "id": "e8Cw6hUXmT3" + "id": "KSKcmBgYrov" }, { "id": "uG8477tQT0d" }, { - "id": "KSKcmBgYrov" + "id": "Wgd2n77F7Gt" }, { - "id": "yqiqScaSAPi" + "id": "i0wZ2ZFmfkW" }, { - "id": "e87Q0bPAPFJ" + "id": "K4ai530ChFX" }, { - "id": "y2uyhyc7kqW" + "id": "Ou41h46tMcD" }, { - "id": "C0QLSs6ymHL" + "id": "mEY5CsRrI0P" }, { - "id": "i0wZ2ZFmfkW" + "id": "O0QXE8gn0OL" }, { - "id": "yIqYlJnhYyj" + "id": "KecRLspBj0V" }, { - "id": "mEY5CsRrI0P" + "id": "yqiqScaSAPi" }, { - "id": "K4s5c1UqChK" + "id": "e8Cw6hUXmT3" }, { - "id": "KocDGQNwOVN" + "id": "C0QLSs6ymHL" }, { - "id": "aWmCNZi0Hcq" + "id": "ik0ICagvIjm" }, { - "id": "KgETkXKU36b" + "id": "SeYl64icyGD" }, { - "id": "KecRLspBj0V" + "id": "qCqieUNUMCb" }, { "id": "WMAhrqMkpeN" }, { - "id": "OIimwtgdcW8" + "id": "yIqYlJnhYyj" }, { - "id": "K4ai530ChFX" + "id": "SaUjrYpA3ZK" }, { "id": "KuMdSyum1NF" }, { - "id": "O0QXE8gn0OL" + "id": "OIimwtgdcW8" }, { - "id": "qQy0N1xdwQ1" + "id": "yKXntYu2GKF" }, { - "id": "SeYl64icyGD" + "id": "esCSTOzV5CD" }, { - "id": "ik0ICagvIjm" + "id": "q8C2wnYFK3T" }, { - "id": "akYJbGDrNVm" + "id": "aOUffyMug7t" }, { "id": "C24wpyjZTGe" }, { - "id": "yKXntYu2GKF" + "id": "GYYltkqzWlI" }, { - "id": "aOUffyMug7t" + "id": "KgETkXKU36b" }, { - "id": "O2ZoxgfyNbk" + "id": "mog7WefRWEM" }, { - "id": "GYYltkqzWlI" + "id": "aWmCNZi0Hcq" }, { - "id": "qCqieUNUMCb" + "id": "O2ZoxgfyNbk" }, { - "id": "esCSTOzV5CD" + "id": "qQy0N1xdwQ1" + }, + { + "id": "aqCOXJ5URiL" }, { "id": "SQKAXCQeTyN" }, { - "id": "Wgd2n77F7Gt" + "id": "e87Q0bPAPFJ" }, { - "id": "m0OkH08ROjX" + "id": "K4s5c1UqChK" }, { - "id": "K6mAC5SiO29" + "id": "KocDGQNwOVN" } ] }, @@ -254,10 +261,7 @@ "displayName": "CHP", "dataElements": [ { - "id": "eeIVMtUFRVp" - }, - { - "id": "GMW6KDNPTEh" + "id": "qgaoVOkdLWl" }, { "id": "uqQzib8Ybsd" @@ -266,7 +270,10 @@ "id": "i0ayw9a7y7J" }, { - "id": "qgaoVOkdLWl" + "id": "eeIVMtUFRVp" + }, + { + "id": "GMW6KDNPTEh" }, { "id": "qS1nbDQmfBF" @@ -282,28 +289,28 @@ "id": "CyyWEcz5o5G" }, { - "id": "ysU7uKQJf1T" + "id": "em64U7iG9nf" }, { - "id": "awsNtaiPxBR" + "id": "WmauKiAiueX" }, { "id": "eYMalffxy0L" }, { - "id": "m8UnBobumQc" + "id": "awsNtaiPxBR" }, { - "id": "WmauKiAiueX" + "id": "ysU7uKQJf1T" }, { - "id": "eYIJJrOJ0JT" + "id": "m8UnBobumQc" }, { - "id": "GAKypUThMRr" + "id": "eYIJJrOJ0JT" }, { - "id": "em64U7iG9nf" + "id": "GAKypUThMRr" }, { "id": "qK4YkTO0rZL" @@ -316,31 +323,31 @@ "displayName": "Education", "dataElements": [ { - "id": "SyMHJiqHLOf" + "id": "Gyq0FR92NIq" }, { "id": "ic8kc26aeDU" }, { - "id": "i0wZ2ZFmfkW" + "id": "em64U7iG9nf" }, { - "id": "quu6c8OQNMv" + "id": "i0wZ2ZFmfkW" }, { - "id": "me6ajAPHCXT" + "id": "GMGoHRuQdCn" }, { - "id": "GMGoHRuQdCn" + "id": "me6ajAPHCXT" }, { - "id": "em64U7iG9nf" + "id": "SyMHJiqHLOf" }, { "id": "eOATbcUKnJo" }, { - "id": "Gyq0FR92NIq" + "id": "quu6c8OQNMv" } ] }, @@ -350,7 +357,7 @@ "displayName": "Food", "dataElements": [ { - "id": "quu6c8OQNMv" + "id": "mUXPq3PNjxt" }, { "id": "uam4rE1aVKS" @@ -362,31 +369,31 @@ "id": "GMGoHRuQdCn" }, { - "id": "mWsf03mYbcc" + "id": "ycEfFA0R1zQ" }, { - "id": "WUCuxbfpPJz" + "id": "qeGgLr2I471" }, { "id": "qcSsqXKZW0U" }, { - "id": "u8w5jXOxrHt" + "id": "OoyOMBMIhfd" }, { - "id": "KYUWhiUFeUr" + "id": "quu6c8OQNMv" }, { - "id": "ycEfFA0R1zQ" + "id": "u8w5jXOxrHt" }, { - "id": "qeGgLr2I471" + "id": "mWsf03mYbcc" }, { - "id": "OoyOMBMIhfd" + "id": "WUCuxbfpPJz" }, { - "id": "mUXPq3PNjxt" + "id": "KYUWhiUFeUr" } ] }, @@ -396,1069 +403,4146 @@ "displayName": "Health", "dataElements": [ { - "id": "yWqoXCcfNTy" + "id": "Cy6LP31Z6xH" }, { - "id": "a4qI98GSL7N" + "id": "mY2DPBLfgsQ" }, { - "id": "qoyCmL8q7xt" + "id": "qeAkV6WFTeu" }, { - "id": "m2MjfqFFmjs" + "id": "qoyCmL8q7xt" }, { - "id": "eESSFKKADfq" + "id": "K6kd4hRr1kH" }, { - "id": "u88V446Yrvb" + "id": "mmej5Mq3wbX" }, { - "id": "WSOU9kw6Htr" + "id": "qycHkj19wHq" }, { - "id": "KUKoGeVzFTC" + "id": "iu44dfenmM2" }, { - "id": "ya21TqO05jE" + "id": "GQwfJqqncbi" }, { - "id": "qycHkj19wHq" + "id": "WySskSIZwaM" }, { - "id": "e2GAXXJtms9" + "id": "KO8WSTdUWpm" }, { - "id": "WYovLaeWDag" + "id": "yCE8yRRSLao" }, { - "id": "SKkfrCzpoxa" + "id": "qmW2zE1ONWN" }, { - "id": "WySskSIZwaM" + "id": "aE0itK0vaKD" }, { - "id": "G00cLpvqpvV" + "id": "KcMn312se9Q" }, { - "id": "i0WWUhzisEK" + "id": "uoglSrXOCOf" }, { - "id": "iSUjjR1nolD" + "id": "eu4CSzAmx3O" }, { - "id": "WIg3SRULDvK" + "id": "m2UNI7jfN5V" }, { - "id": "yeeMeFfZUfi" + "id": "uQi0CU79Ivw" }, { - "id": "WSYRjif67DQ" + "id": "yY8LM2Sx4bu" }, { - "id": "yiAZ2tvWOGK" + "id": "SysxWzx4KXX" }, { - "id": "KQS9tdttTyi" + "id": "SKkfrCzpoxa" }, { - "id": "qoyUvAUcCDE" + "id": "y4ApFxWXBfl" }, { - "id": "SsghcMY2FnR" + "id": "uUmy1Go3hhk" }, { - "id": "CSwvrBGE0mJ" + "id": "S2ua4bjQVBz" }, { - "id": "CAYv5AjgIl2" + "id": "OKAHBIGz0Ki" }, { - "id": "qesC4uvl9Ah" + "id": "Wq0MmYQKeZu" }, { - "id": "ywrzZ4voCri" + "id": "yqcXYH5BZhD" }, { - "id": "KEOuGGbp5K5" + "id": "SeSfonl5TFe" }, { - "id": "Wq0MmYQKeZu" + "id": "eEMXjhSACqn" }, { - "id": "GqoFCvfjwIi" + "id": "WOcxJt5cj3q" }, { - "id": "CGkvuMeGPGu" + "id": "eM4u0GT4JW2" }, { - "id": "Cy6LP31Z6xH" + "id": "CIawf1RwUhU" }, { - "id": "e2I1nMkhhvx" + "id": "iW2ZQqy7pHo" }, { - "id": "CagfF9DPOuL" + "id": "WYovLaeWDag" }, { - "id": "u80a11AljkK" + "id": "WGwPVIMey32" }, { - "id": "awWOon4mbRk" + "id": "uc6EozXZBeB" }, { - "id": "yCE8yRRSLao" + "id": "ys6d9CavDJy" }, { - "id": "OKAHBIGz0Ki" + "id": "maolqzbs4K3" }, { - "id": "qGKssff9JwK" + "id": "Ck0YFFjEoyo" }, { - "id": "qcSsqXKZW0U" + "id": "iSUjjR1nolD" }, { - "id": "mqkX2ladoVS" + "id": "KUKoGeVzFTC" }, { - "id": "S2ua4bjQVBz" + "id": "qGKssff9JwK" }, { - "id": "CMQ1YXVibYU" + "id": "Gc65mD3LGEp" }, { - "id": "yeKVjpXOjQI" + "id": "maoLtUEhHCC" }, { - "id": "KYiLxwJhtm2" + "id": "qWykpPAsJe9" }, { - "id": "qOC40vYf13d" + "id": "Wayu8KYftDj" }, { - "id": "uEGeiH8uCr8" + "id": "G00cLpvqpvV" }, { - "id": "O8uEwgIqfMA" + "id": "yy0KNDBMMJy" }, { - "id": "uYeoyAKEzbr" + "id": "GUw5tgJcacN" }, { - "id": "a6SyfkuUcqv" + "id": "W0SCUw6KViC" }, { - "id": "CQPwg8Nipro" + "id": "OwG0d1xRQzS" }, { - "id": "WUItTX5YzPL" + "id": "umeoo1RP3HI" }, { - "id": "eoEtWMiPJ54" + "id": "ussN3RsUlG9" }, { - "id": "mW2Hv8VIr3O" + "id": "yC87289axI2" }, { - "id": "GQWvqy78j1p" + "id": "GqoFCvfjwIi" }, { - "id": "GyoNI1DRlAl" + "id": "CmuTB25WhVC" }, { - "id": "e6E27ya1qf6" + "id": "mYAB3bCK8Nz" }, { - "id": "iiEThnJ5xEb" + "id": "uOYLykMs3nd" }, { - "id": "KYkxZLiSAhg" + "id": "qesC4uvl9Ah" }, { - "id": "yawJAl2c1jJ" + "id": "mwoRWmp5FQc" }, { - "id": "iw2nTn0oV5o" + "id": "mu2b9Ivde6J" }, { - "id": "y4ApFxWXBfl" + "id": "yeeMeFfZUfi" }, { - "id": "yGIr6ZotIs8" + "id": "CoyQTaNQdE8" }, { - "id": "SMEnhI6A9Rs" + "id": "quk3JQrF0Vb" }, { - "id": "Wq4390xucCa" + "id": "Cks5Ap9OGCJ" }, { - "id": "aSk1I6wJ9AY" + "id": "iw2nTn0oV5o" }, { - "id": "W0SCUw6KViC" + "id": "u6m2wBChTgw" }, { - "id": "GMGkGPLnIlt" + "id": "Oacl33jhIKS" }, { - "id": "ugq2qktXHs0" - } - ] - }, - { - "code": "SECTOR_LIVELIHOOD", - "id": "GkiSljtLcOI", - "displayName": "Livelihood", - "dataElements": [ - { - "id": "iyQBe9Xv7bk" + "id": "eaSaFDCJJ5A" }, { - "id": "u24zk6wAgFE" + "id": "a4qI98GSL7N" }, { - "id": "GQyudNlGzkI" + "id": "i0WWUhzisEK" }, { - "id": "OWQzKQcWkqp" + "id": "a6SyfkuUcqv" }, { - "id": "ua2JqES2mUL" + "id": "CYMv53h7bTm" }, { - "id": "CwIfK1Jiui2" + "id": "Kmmux5Rvbku" }, { - "id": "Wq0oITH2wna" + "id": "CagfF9DPOuL" }, { - "id": "WwMbFHHKGgW" + "id": "WmAdRlulZyY" }, { - "id": "SIeeRXzyAIx" + "id": "qcSsqXKZW0U" }, { - "id": "GqA7bkJ6GEN" + "id": "WSYRjif67DQ" }, { - "id": "WEkZp4NJC29" + "id": "CacPEBF0aKo" }, { - "id": "e6wdrrz9ZS6" + "id": "iQYbMelX1S1" }, { - "id": "W40WQqgOVuV" + "id": "eWcXkOVD49j" }, { - "id": "CQkzkkkzpRT" + "id": "eoEtWMiPJ54" }, { - "id": "Wk0ONOEwrQy" + "id": "Co00LfH1Jnk" }, { - "id": "imakJ22nlwc" + "id": "mI0SRjrLyXT" }, { - "id": "OKIqOe51jVq" + "id": "CeUzDYi7iSt" }, { - "id": "iyAnflVLHS3" + "id": "iYEDR850FFL" }, { - "id": "uk6vjgubPaA" + "id": "CQPwg8Nipro" }, { - "id": "WM4XoeIxJ5b" + "id": "yWqoXCcfNTy" }, { - "id": "eeqkGzLMaSD" + "id": "mKIZRFEeDhv" }, { - "id": "We61YNYyOX0" + "id": "yWi8sZoGeKl" }, { - "id": "yUGuwPFkBrj" + "id": "y8UJqdFT1aD" }, { - "id": "CQPwg8Nipro" + "id": "ya21TqO05jE" }, { - "id": "qMBwrj5lDhd" + "id": "WUItTX5YzPL" }, { - "id": "a8izG9FuLzQ" + "id": "ugA5YKLmYfV" }, { - "id": "io65ueHZUpQ" + "id": "ec8AkoYUWiA" }, { - "id": "i0wZ2ZFmfkW" + "id": "qc4plvUBscw" }, { - "id": "aWaC0807qD4" + "id": "ygQdbV1JA14" }, { - "id": "iQCoaXYxswJ" + "id": "Kk4miRS84h8" }, { - "id": "yMqK9DKbA3X" + "id": "OYoxGoh5hnB" }, { - "id": "eGKS3DrQcTd" + "id": "KYiLxwJhtm2" }, { - "id": "ayoVLBc4lFq" + "id": "GuozyubVBZP" }, { - "id": "C4WY1eUmXkX" - } - ] - }, - { - "code": "SECTOR_MINISTRY", - "id": "i8qug2Himby", - "displayName": "Ministry", - "dataElements": [ - { - "id": "qmMfNKlOnYl" + "id": "yCWee9GmYYS" }, { - "id": "uASwJcZwhJR" + "id": "eQe0z9SXqm6" }, { - "id": "Cg4c5HRdyJt" + "id": "yGIr6ZotIs8" }, { - "id": "qkyeCTJHU2d" + "id": "e0MfXUf9Kqq" }, { - "id": "qY6VZUiUqP5" + "id": "ySUrbPZBI3d" }, { - "id": "SYEA0uCdMQY" + "id": "aw6FV833DML" }, { - "id": "umkL2sEVSNR" + "id": "Oog3ay5wQ8n" }, { - "id": "a64hlNkGyfj" + "id": "ecAfQfpTsfJ" }, { - "id": "SQy5q6kCYI1" + "id": "Go0cUEh88nS" }, { - "id": "CEA1CMayvfm" + "id": "uYG4SKGuqrV" }, { - "id": "me67rLoG7Ug" + "id": "qSkP0W5i6ds" + } + ] + }, + { + "code": "SECTOR_LIVELIHOOD", + "id": "GkiSljtLcOI", + "displayName": "Livelihood", + "dataElements": [ + { + "id": "imakJ22nlwc" }, { - "id": "WUMjtbgofs2" + "id": "iyQBe9Xv7bk" }, { - "id": "Oo8Ljg8MUlo" + "id": "We61YNYyOX0" }, { - "id": "GeGEm2k6WKy" + "id": "WM4XoeIxJ5b" }, { - "id": "eAkVLI8mKBa" + "id": "WwMbFHHKGgW" }, { - "id": "KSIDMpRN98y" + "id": "CwIfK1Jiui2" }, { - "id": "mm8STQA7P0V" + "id": "iQCoaXYxswJ" }, { - "id": "GsKksqhBDzS" + "id": "OKIqOe51jVq" }, { - "id": "i0ayw9a7y7J" + "id": "Wk0ONOEwrQy" }, { - "id": "S20aprHSmoY" + "id": "i0wZ2ZFmfkW" }, { - "id": "KIM3IoYEn0Q" + "id": "WEkZp4NJC29" }, { - "id": "OKATOswBVFp" - } - ] - }, - { - "code": "SECTOR_NUTRITION", - "id": "mUmeTWQ7qvZ", - "displayName": "Nutrition", - "dataElements": [ + "id": "C4WY1eUmXkX" + }, { - "id": "qoyCmL8q7xt" + "id": "eeqkGzLMaSD" }, { - "id": "WM8jnuXBsFM" + "id": "GqA7bkJ6GEN" }, { - "id": "WmMjbrn9L5N" + "id": "qMBwrj5lDhd" }, { - "id": "em6hBeB1Mgx" + "id": "W40WQqgOVuV" }, { - "id": "iMio9osPejA" + "id": "SIeeRXzyAIx" }, { - "id": "igegpsgZJtk" + "id": "aWaC0807qD4" }, { - "id": "CQkzkkkzpRT" + "id": "yUGuwPFkBrj" }, { - "id": "aSyPclS5UKs" + "id": "a8izG9FuLzQ" }, { - "id": "mSspV1RxrUv" + "id": "ayoVLBc4lFq" }, { - "id": "me0ILSeLpfv" + "id": "ua2JqES2mUL" }, { - "id": "SOgtZvFvRe7" + "id": "GQyudNlGzkI" }, { - "id": "WMaSv1ifNYB" + "id": "uk6vjgubPaA" }, { - "id": "eQCEGPuzi8U" + "id": "iyAnflVLHS3" }, { - "id": "uqoHFB0TTNE" + "id": "Wq0oITH2wna" }, { - "id": "umgzhNhZZuG" + "id": "eGKS3DrQcTd" }, { - "id": "GqglcVtN0jK" + "id": "yMqK9DKbA3X" }, { - "id": "SiKGyiSSH6D" + "id": "CQkzkkkzpRT" }, { - "id": "OE5jU8FBwjN" + "id": "u24zk6wAgFE" }, { - "id": "eusRdnJsPYS" + "id": "io65ueHZUpQ" }, { - "id": "CukJJn0tlAe" + "id": "OWQzKQcWkqp" }, { - "id": "eacDOvAXM8w" + "id": "e6wdrrz9ZS6" }, { - "id": "S4gTBFCkNox" + "id": "CQPwg8Nipro" + } + ] + }, + { + "code": "SECTOR_MINISTRY", + "id": "i8qug2Himby", + "displayName": "Ministry", + "dataElements": [ + { + "id": "WgCIQKgJQeg" }, { - "id": "aEWqGOerMCR" + "id": "iSisFpnDzIf" }, { - "id": "mKsNDllOoX6" + "id": "mu2b9Ivde6J" }, { - "id": "usUXZo8S6ML" + "id": "qY6VZUiUqP5" }, { - "id": "qcSsqXKZW0U" + "id": "maolqzbs4K3" }, { - "id": "uiMFMxYBPQu" + "id": "CI8NCm34d7D" }, { - "id": "G8sNvDftYFf" + "id": "GeGEm2k6WKy" }, { - "id": "ei0GG8tgs3O" + "id": "GsKksqhBDzS" }, { - "id": "KuAjqeAm3ud" + "id": "mm8STQA7P0V" }, { - "id": "qeGgLr2I471" + "id": "umkL2sEVSNR" }, { - "id": "q0YJ8y0Cx17" + "id": "eAkVLI8mKBa" }, { - "id": "moEnj0e1v1m" + "id": "GWK26SqFbgS" }, { - "id": "WIsDaZNKhVY" + "id": "ayKUg0jcQIs" }, { - "id": "WGYVTfvRQTp" + "id": "OKATOswBVFp" }, { - "id": "SiIlD6JXwrh" + "id": "SYEA0uCdMQY" }, { - "id": "S60gcORJg7s" + "id": "Oo8Ljg8MUlo" }, { - "id": "WEgNESq1A7p" + "id": "KSIDMpRN98y" }, { - "id": "esCSTOzV5CD" + "id": "Ks4y2ZCBejU" }, { - "id": "mc7d96pQsmj" + "id": "Cg4c5HRdyJt" }, { - "id": "mUXPq3PNjxt" + "id": "WUMjtbgofs2" }, { - "id": "Oocne32yGqU" + "id": "ecAfQfpTsfJ" + }, + { + "id": "S20aprHSmoY" + }, + { + "id": "i0ayw9a7y7J" + }, + { + "id": "me67rLoG7Ug" + }, + { + "id": "qkyeCTJHU2d" + }, + { + "id": "iYEDR850FFL" + }, + { + "id": "SQy5q6kCYI1" } ] }, { - "code": "SECTOR_PROTECTION", - "id": "auULQasRbJL", - "displayName": "Protection", + "code": "SECTOR_NUTRITION", + "id": "mUmeTWQ7qvZ", + "displayName": "Nutrition", "dataElements": [ { - "id": "S62f9sHZt5o" + "id": "moEnj0e1v1m" }, { - "id": "aMYPyQu0kYd" + "id": "S4gTBFCkNox" }, { - "id": "qcwhkIgx56S" + "id": "em6hBeB1Mgx" }, { - "id": "yMUpSkWEOKV" + "id": "G8sNvDftYFf" }, { - "id": "iCyWMeyLZSj" + "id": "ei0GG8tgs3O" }, { - "id": "Ky6VzmlyzCj" + "id": "qeGgLr2I471" }, { - "id": "qAM1NbCbS9G" + "id": "qoyCmL8q7xt" }, { - "id": "qYmi5h7nMi5" + "id": "umgzhNhZZuG" }, { - "id": "yqmyP1vNJk0" + "id": "SiIlD6JXwrh" }, { - "id": "Wmquc4R3BkI" + "id": "CukJJn0tlAe" }, { - "id": "eea0MAkiPCL" + "id": "WIsDaZNKhVY" }, { - "id": "CAa2HJhcMdZ" + "id": "aEWqGOerMCR" }, { - "id": "OSOCkyUnh9m" + "id": "eQCEGPuzi8U" }, { - "id": "aiisN6lDbcy" + "id": "mSspV1RxrUv" }, { - "id": "CQEv5mMFQwk" + "id": "igegpsgZJtk" }, { - "id": "GMYNd6p9774" + "id": "WM8jnuXBsFM" }, { - "id": "ywQfPB6FJCu" + "id": "qcSsqXKZW0U" }, { - "id": "i6AroUcNO7Q" + "id": "KuAjqeAm3ud" }, { - "id": "m6aMAagwCdT" + "id": "uk6vjgubPaA" }, { - "id": "OI42rcjHPWP" + "id": "aSyPclS5UKs" }, { - "id": "CAoDnDrYQ5S" + "id": "Oocne32yGqU" }, { - "id": "mu0Ek4JypBO" + "id": "SiKGyiSSH6D" }, { - "id": "SqW0WwXRcEy" + "id": "CQkzkkkzpRT" }, { - "id": "eqolMumZszo" + "id": "S60gcORJg7s" }, { - "id": "uym0D98bxI5" + "id": "mc7d96pQsmj" }, { - "id": "mwITPAhlsIV" + "id": "me0ILSeLpfv" }, { - "id": "iiCO3KErryp" + "id": "uqoHFB0TTNE" }, { - "id": "Cow5NLd5mLE" + "id": "WGYVTfvRQTp" }, { - "id": "eIGcZfpUnRn" + "id": "iMio9osPejA" }, { - "id": "iCKxYSFIlcu" + "id": "eacDOvAXM8w" }, { - "id": "y6ufXSNhF81" + "id": "q0YJ8y0Cx17" }, { - "id": "Sss1IQxLzyO" + "id": "esCSTOzV5CD" }, { - "id": "GCi0yI0lEFt" + "id": "mKsNDllOoX6" }, { - "id": "uoaCYzmXcE8" + "id": "mUXPq3PNjxt" }, { - "id": "WKWMzV885LL" + "id": "uiMFMxYBPQu" }, { - "id": "Sy02tbklwzs" + "id": "SOgtZvFvRe7" }, { - "id": "yIgnPUbwsLS" + "id": "usUXZo8S6ML" + }, + { + "id": "OE5jU8FBwjN" + }, + { + "id": "WEgNESq1A7p" + }, + { + "id": "eusRdnJsPYS" + }, + { + "id": "WmMjbrn9L5N" + }, + { + "id": "GqglcVtN0jK" + }, + { + "id": "WMaSv1ifNYB" } ] }, { - "code": "SECTOR_SHELTER", - "id": "O2wdK9G0m9f", - "displayName": "Shelter", + "code": "SECTOR_OUTBREAK", + "id": "yc6nqm2e2wG", + "displayName": "Outbreak", "dataElements": [ { - "id": "SKi4fRAdhk7" + "id": "WiaeLPmiwPo" }, { - "id": "SYVRocVMMpi" + "id": "SeGEQFjX13X" }, { - "id": "OKgFYITeL5k" + "id": "yclFJtnRoCu" }, { - "id": "mWu8f1Vxk1k" + "id": "CW87Mwvte6I" }, { - "id": "mcPWIzctkij" + "id": "mW8ReUrYDmi" }, { - "id": "Gy4R57uxJGf" + "id": "WIK2mVOiFyl" }, { - "id": "uGygVN0ES1o" + "id": "SUCCf4QXh1M" }, { - "id": "WswpOsajwWK" + "id": "mM4AQHpZ3WZ" }, { - "id": "S6oNywvqVL9" + "id": "im8AIH2byzY" }, { - "id": "C0OISdeJaeD" + "id": "S0yUUpEE59y" }, { - "id": "miYneg7nVZR" + "id": "W8scoR5nGS6" }, { - "id": "G6CCgEB6NLt" + "id": "a4KuBxPzAAC" }, { - "id": "msKkuVQZoOF" + "id": "yaeeFvRaQyC" }, { - "id": "G6k7yhUhrUU" + "id": "K8E5Zrb51OK" }, { - "id": "GE1BUNc7GTl" + "id": "aceAgLaBFlz" }, { - "id": "iQoZVOV9ytH" + "id": "yEfnhP9dD3L" }, { - "id": "OMJCwbXM9eg" + "id": "WBdKcnWHHua" }, { - "id": "G8cb0kMg4Z0" + "id": "m2KG0TbjOf1" }, { - "id": "uASwJcZwhJR" + "id": "uSmZEdlVd1b" }, { - "id": "eOsnXFHy2vn" + "id": "ugYZX8jfuOo" }, { - "id": "a4WECraqDwz" + "id": "KQqApgHmnTs" }, { - "id": "KWmKf2Tlg6p" + "id": "eiik2Vv9wO6" }, { - "id": "eWMRYu8Dn8s" + "id": "SSOeQGprXYn" }, { - "id": "OYiIfLFNIBU" + "id": "qOQzhI7xiCN" }, { - "id": "CQK2WzuEktG" + "id": "OymUIzWpKNr" }, { - "id": "W62kB6unowM" + "id": "KmKezVY1D8f" }, { - "id": "qY6VZUiUqP5" + "id": "aMOElhvq1vn" }, { - "id": "Wkyu5QgGFhN" + "id": "eMCKhCswmeX" }, { - "id": "uooLz69cpuC" + "id": "mQghHph4IKD" }, { - "id": "OYslNIHtlHg" + "id": "aCUlORZETcB" }, { - "id": "a8Y3J0Dl63j" + "id": "qua6NsVc0NK" }, { - "id": "SGmWjKYWZrQ" + "id": "SGiIDNhFovM" }, { - "id": "CEA1CMayvfm" + "id": "KSk0xFTWOnV" }, { - "id": "GcQ3L0BcNd2" + "id": "qM69VnOH5U7" }, { - "id": "eiy8sOqlvgo" + "id": "yOTwH4T0Piy" }, { - "id": "CQPwg8Nipro" + "id": "K20gYhaC9Nc" }, { - "id": "KWYbEKBzT3X" + "id": "eMKmLitDAaQ" }, { - "id": "iiEThnJ5xEb" + "id": "Oyqw6aYdHkp" }, { - "id": "eygHRgjorW0" + "id": "W8egWNMGS4f" }, { - "id": "igS2SkaUoc7" + "id": "uYs3TbLhBws" }, { - "id": "Wq4390xucCa" - } - ] - }, - { - "code": "SECTOR_WASH", - "id": "Oq4A79YZZ8E", - "displayName": "WASH", - "dataElements": [ + "id": "CoSk2Uwumml" + }, { - "id": "OYkHOXijR2y" + "id": "KywB4uNaLGp" }, { - "id": "yCQN7VsFUya" + "id": "uyuoudahZk3" }, { - "id": "i6gH2qYAkuy" + "id": "SiGa877dkxN" }, { - "id": "uyMhgwLwrzi" + "id": "S4SyTYURKsv" + }, + { + "id": "akIHwQmoI4A" + }, + { + "id": "GYkrgx3wqGz" + }, + { + "id": "uC0w4nTG29i" + }, + { + "id": "Omobz0poEAJ" + }, + { + "id": "qCaKOh97pu5" + }, + { + "id": "mK8Ix4mGY4D" + }, + { + "id": "aEM7IlLGKAs" + }, + { + "id": "CgWYGjqNqT7" + }, + { + "id": "SgEdN0VXHhx" + }, + { + "id": "OAfITI6SQSe" + }, + { + "id": "OE6RRWU6RTh" + }, + { + "id": "KGM59Dza2sg" + } + ] + }, + { + "code": "SECTOR_PROTECTION", + "id": "auULQasRbJL", + "displayName": "Protection", + "dataElements": [ + { + "id": "iCyWMeyLZSj" + }, + { + "id": "qYmi5h7nMi5" + }, + { + "id": "KueoAZr2xIV" + }, + { + "id": "uoaCYzmXcE8" + }, + { + "id": "Wmquc4R3BkI" + }, + { + "id": "mu0Ek4JypBO" + }, + { + "id": "eaiqACnKxjs" + }, + { + "id": "uym0D98bxI5" + }, + { + "id": "SaqE3wyYRHP" + }, + { + "id": "eea0MAkiPCL" + }, + { + "id": "mamIIS1OdHC" + }, + { + "id": "GCi0yI0lEFt" + }, + { + "id": "S62f9sHZt5o" + }, + { + "id": "OI42rcjHPWP" + }, + { + "id": "i6AroUcNO7Q" + }, + { + "id": "aiisN6lDbcy" + }, + { + "id": "eIGcZfpUnRn" + }, + { + "id": "Ky6VzmlyzCj" + }, + { + "id": "ywQfPB6FJCu" + }, + { + "id": "yIgnPUbwsLS" + }, + { + "id": "yqmyP1vNJk0" + }, + { + "id": "OSOCkyUnh9m" + }, + { + "id": "CQEv5mMFQwk" + }, + { + "id": "CAoDnDrYQ5S" + }, + { + "id": "OIisZWsbUWF" + }, + { + "id": "iSIA2YE27K0" + }, + { + "id": "SqW0WwXRcEy" + }, + { + "id": "iCKxYSFIlcu" + }, + { + "id": "qcwhkIgx56S" + }, + { + "id": "Sy02tbklwzs" + }, + { + "id": "yKY8IwqOAdj" + }, + { + "id": "GgacCB3dFLy" + }, + { + "id": "qAM1NbCbS9G" + }, + { + "id": "yMUpSkWEOKV" + }, + { + "id": "WKWMzV885LL" + }, + { + "id": "m6aMAagwCdT" + }, + { + "id": "aMYPyQu0kYd" + } + ] + }, + { + "code": "SECTOR_SHELTER", + "id": "O2wdK9G0m9f", + "displayName": "Shelter", + "dataElements": [ + { + "id": "WgCIQKgJQeg" + }, + { + "id": "mu2b9Ivde6J" + }, + { + "id": "qY6VZUiUqP5" + }, + { + "id": "aYk5MgSCLXP" + }, + { + "id": "uyErryPGFZs" + }, + { + "id": "KWmKf2Tlg6p" + }, + { + "id": "ayKUg0jcQIs" + }, + { + "id": "GSMf5gMHwgd" }, { - "id": "a0mutVmldRT" + "id": "OKgFYITeL5k" }, { - "id": "G8YTyVQiHgD" + "id": "OOCOr95zk1q" }, { - "id": "uu2HUeQTQ46" + "id": "qSmIqw8878y" }, { - "id": "WmIVrE9jpWP" + "id": "S6oNywvqVL9" }, { - "id": "aoaig04eQSL" + "id": "uQeZCfhxIAZ" }, { "id": "a08FKV0iidX" }, { - "id": "myER4HL7jIC" + "id": "OmObSzjMNJe" }, { - "id": "uE6ZPpbPz66" + "id": "KWYbEKBzT3X" }, { - "id": "aGqgx6eCXIP" + "id": "yeq0Rgwyk3v" }, { - "id": "mSks6f7LVkn" + "id": "OYiIfLFNIBU" }, { - "id": "ugE5QIKn3l1" + "id": "Gg4qCBvZ99L" }, { - "id": "OMUvfdhoG7W" + "id": "G6CCgEB6NLt" }, { - "id": "aIuubwhMJ9J" + "id": "qsyWwrmt33M" }, { - "id": "egQPupxcfGR" + "id": "imuTP7oBnOF" }, { - "id": "SC6PII9boW6" + "id": "iYEDR850FFL" }, { - "id": "ecQncxEhoEE" + "id": "W4sDeNJ86rf" + }, + { + "id": "CQPwg8Nipro" + }, + { + "id": "qCc9Mog86QE" + }, + { + "id": "maolqzbs4K3" + }, + { + "id": "eCiNhTEEwP2" + }, + { + "id": "mgSMcRjQY7P" }, { "id": "miYneg7nVZR" }, { - "id": "acwDBR7ggHo" + "id": "qYMiVPnxFpT" }, { - "id": "a2QVTkHYtMr" + "id": "mm8STQA7P0V" }, { - "id": "uEmAYQ6OMAc" + "id": "KKmUWsn19fq" }, { - "id": "iUGimOzXgOL" + "id": "muknsuxQ5ch" }, { - "id": "KgyKmC4waTM" + "id": "CQK2WzuEktG" }, { - "id": "i8a8inqJcXi" + "id": "CE9te39HtIt" }, { - "id": "uUENmyjNVbT" + "id": "Okq8Qfhx8Yn" }, { - "id": "ycWiYB14jfJ" + "id": "OI2puJwy7Q6" }, { - "id": "qm6HENhtZpz" + "id": "OwUrgV6dRRD" + }, + { + "id": "m6QynUevAqo" + }, + { + "id": "ecAfQfpTsfJ" + }, + { + "id": "KAqED5puVJR" + }, + { + "id": "eSqIjaS1r2w" }, + { + "id": "iAQ5SzrWRoj" + }, + { + "id": "awgF2cmvQrn" + }, + { + "id": "SImQCbjEbXz" + }, + { + "id": "WwuQyH1Y38R" + } + ] + }, + { + "code": "SECTOR_WASH", + "id": "Oq4A79YZZ8E", + "displayName": "WASH", + "dataElements": [ { "id": "mkOo1Ano2Te" }, { - "id": "GAd3Dt1Q43e" + "id": "OYkHOXijR2y" + }, + { + "id": "qkamQF5GoMT" }, { - "id": "O2SOwpK60v3" + "id": "qow7I4mkB1o" }, { - "id": "CGkvuMeGPGu" + "id": "Ws48eBlsPVy" }, { - "id": "eomuFjZVSgu" + "id": "meUNtJr7X5M" }, { - "id": "CC6Iy1wakVf" + "id": "SuayUhAd7I9" }, { - "id": "ewAjv4vWJAm" + "id": "mY2DPBLfgsQ" }, { - "id": "K6OYPzO1rVh" + "id": "qqwz7NP5dxE" }, { - "id": "uMeWCCYnx6y" + "id": "Ceig7nKSOzc" + }, + { + "id": "CYKAO7WoHnO" + }, + { + "id": "CKXTn3kNz5J" }, { - "id": "eWMRYu8Dn8s" + "id": "eEMZWaRwRoH" }, { "id": "S4cFVOMqzOC" }, { - "id": "yukjouczkUZ" + "id": "qm6HENhtZpz" + }, + { + "id": "Oacl33jhIKS" + }, + { + "id": "aE0itK0vaKD" + }, + { + "id": "mSGEH8Rhe8n" + }, + { + "id": "mmU1VP94a5A" }, { "id": "e8PLRnSt0Od" }, { - "id": "CkgxCiq5G8x" + "id": "ieMPt2lJ3lp" }, { - "id": "ye0Qx76WlzG" + "id": "GeIvUs41E1U" }, { - "id": "aMArYG9xgYf" + "id": "uyMhgwLwrzi" }, { - "id": "WSgnt7psGh6" + "id": "SiCifbteVub" }, { - "id": "qe0JpwLEGgh" + "id": "K4AHO1xVumZ" }, { - "id": "W8shJ2IPnKl" + "id": "OKoN6R2HmWQ" }, { - "id": "W44mFIxdgyE" + "id": "qSmIqw8878y" }, { - "id": "qk61QKV3q0q" + "id": "G8CuZodHu5I" }, { - "id": "i4KI6fcLK8i" + "id": "a08FKV0iidX" }, { - "id": "KecvTPeGAHI" + "id": "e6grCpK5iSl" }, { - "id": "KGEBgSleIAf" + "id": "Ce4u0MTUype" }, { - "id": "ieMPt2lJ3lp" + "id": "C6Ip0lKUOBv" }, { - "id": "WwsJ9Fa1IWy" + "id": "OoGKOEoiEmz" }, { - "id": "GQ8fnGfxpqL" + "id": "CawFe7jffkH" }, { - "id": "SMEnhI6A9Rs" + "id": "SSyEvIP1RXh" }, { - "id": "aWeogk5FTW7" + "id": "ScKnYQEkQdl" }, { - "id": "qA8PtX8Yg8C" + "id": "uMeWCCYnx6y" }, { - "id": "yAEbna4Lrun" - } - ] - } - ], - "dataElements": [ - { - "id": "iyQBe9Xv7bk", - "name": "de-B020211", - "code": "B020211", - "description": "de-description-B020211", + "id": "iQwzTcZ6Ans" + }, + { + "id": "isu2SvonHfg" + }, + { + "id": "mCWsf6SE2LU" + }, + { + "id": "WSgnt7psGh6" + }, + { + "id": "mcID0DnsifO" + }, + { + "id": "SWSQWI5qOtS" + }, + { + "id": "mi4SAwJqLtI" + }, + { + "id": "qwAVBohAV86" + }, + { + "id": "aGqgx6eCXIP" + }, + { + "id": "W8shJ2IPnKl" + }, + { + "id": "miYneg7nVZR" + }, + { + "id": "qYMiVPnxFpT" + }, + { + "id": "CC6Iy1wakVf" + }, + { + "id": "acwDBR7ggHo" + }, + { + "id": "egQPupxcfGR" + }, + { + "id": "GUmq3HZIVD5" + }, + { + "id": "aYqgDFCymFU" + }, + { + "id": "qMbhETg3rBr" + }, + { + "id": "m02VdFteqEH" + }, + { + "id": "ecQncxEhoEE" + }, + { + "id": "qgqARJdCR8V" + }, + { + "id": "SUXD2Xh8jJn" + }, + { + "id": "mM6TxfM7fqL" + }, + { + "id": "SM6Sz5h0fsL" + }, + { + "id": "uE6ZPpbPz66" + }, + { + "id": "SecXGmgHADS" + }, + { + "id": "yukjouczkUZ" + }, + { + "id": "WsNFyCinfhO" + }, + { + "id": "yCQN7VsFUya" + }, + { + "id": "qk61QKV3q0q" + }, + { + "id": "awgF2cmvQrn" + } + ] + } + ], + "dataElements": [ + { + "id": "imakJ22nlwc", + "name": "de-P020103", + "code": "P020103", + "externalsDescription": "", + "description": "de-description-P020103", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "201" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "iyQBe9Xv7bk", + "name": "de-B020211", + "code": "B020211", + "externalsDescription": "", + "description": "de-description-B020211", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "GqA7bkJ6GEN", + "code": "P020311", + "name": "pde-P020311" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "We61YNYyOX0", + "name": "de-B020205", + "code": "B020205", + "externalsDescription": "", + "description": "de-description-B020205", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "WM4XoeIxJ5b", + "code": "P020305", + "name": "pde-P020305" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "WM4XoeIxJ5b", + "name": "de-P020305", + "code": "P020305", + "externalsDescription": "", + "description": "de-description-P020305", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "WwMbFHHKGgW", + "name": "de-B020202", + "code": "B020202", + "externalsDescription": "", + "description": "de-description-B020202", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "ua2JqES2mUL", + "code": "P020302", + "name": "pde-P020302" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "CwIfK1Jiui2", + "name": "de-P020308", + "code": "P020308", + "externalsDescription": "", + "description": "de-description-P020308", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "iQCoaXYxswJ", + "name": "de-P020107", + "code": "P020107", + "externalsDescription": "", + "description": "de-description-P020107", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "201" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "OKIqOe51jVq", + "name": "de-B020212", + "code": "B020212", + "externalsDescription": "", + "description": "de-description-B020212", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "eGKS3DrQcTd", + "code": "P020312", + "name": "pde-P020312" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "Wk0ONOEwrQy", + "name": "de-B020206", + "code": "B020206", + "externalsDescription": "", + "description": "de-description-B020206", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "io65ueHZUpQ", + "code": "P020306", + "name": "pde-P020306" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "i0wZ2ZFmfkW", + "name": "de-P020105", + "code": "P020105", + "externalsDescription": "", + "description": "de-description-P020105", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "201" + }, + { + "id": "ieyBABjYyHO", + "series": "101" + }, + { + "id": "eig9M4QOT1S", + "series": "1101" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "WEkZp4NJC29", + "name": "de-P020307", + "code": "P020307", + "externalsDescription": "", + "description": "de-description-P020307", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "C4WY1eUmXkX", + "name": "de-B020203", + "code": "B020203", + "externalsDescription": "", + "description": "de-description-B020203", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "Wq0oITH2wna", + "code": "P020303", + "name": "pde-P020303" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "eeqkGzLMaSD", + "name": "de-P020106", + "code": "P020106", + "externalsDescription": "", + "description": "de-description-P020106", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "201" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "GqA7bkJ6GEN", + "name": "de-P020311", + "code": "P020311", + "externalsDescription": "", + "description": "de-description-P020311", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "qMBwrj5lDhd", + "name": "de-P020301", + "code": "P020301", + "externalsDescription": "", + "description": "de-description-P020301", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "W40WQqgOVuV", + "name": "de-P020101", + "code": "P020101", + "externalsDescription": "", + "description": "de-description-P020101", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "201" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "SIeeRXzyAIx", + "name": "de-P020309", + "code": "P020309", + "externalsDescription": "", + "description": "de-description-P020309", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "aWaC0807qD4", + "name": "de-P020310", + "code": "P020310", + "externalsDescription": "", + "description": "de-description-P020310", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "yUGuwPFkBrj", + "name": "de-B020210", + "code": "B020210", + "externalsDescription": "", + "description": "de-description-B020210", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "aWaC0807qD4", + "code": "P020310", + "name": "pde-P020310" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "a8izG9FuLzQ", + "name": "de-B020201", + "code": "B020201", + "externalsDescription": "", + "description": "de-description-B020201", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "qMBwrj5lDhd", + "code": "P020301", + "name": "pde-P020301" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "ayoVLBc4lFq", + "name": "de-B020207", + "code": "B020207", + "externalsDescription": "", + "description": "de-description-B020207", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "WEkZp4NJC29", + "code": "P020307", + "name": "pde-P020307" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "ua2JqES2mUL", + "name": "de-P020302", + "code": "P020302", + "externalsDescription": "", + "description": "de-description-P020302", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "GQyudNlGzkI", + "name": "de-P020300", + "code": "P020300", + "externalsDescription": "", + "description": "de-description-P020300", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "uk6vjgubPaA", + "name": "de-P020304", + "code": "P020304", + "externalsDescription": "", + "description": "de-description-P020304", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + }, + { + "id": "mUmeTWQ7qvZ", + "series": "405" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "iyAnflVLHS3", + "name": "de-B020208", + "code": "B020208", + "externalsDescription": "", + "description": "de-description-B020208", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "CwIfK1Jiui2", + "code": "P020308", + "name": "pde-P020308" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "Wq0oITH2wna", + "name": "de-P020303", + "code": "P020303", + "externalsDescription": "", + "description": "de-description-P020303", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "eGKS3DrQcTd", + "name": "de-P020312", + "code": "P020312", + "externalsDescription": "", + "description": "de-description-P020312", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "yMqK9DKbA3X", + "name": "de-B020200", + "code": "B020200", + "externalsDescription": "", + "description": "de-description-B020200", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "GQyudNlGzkI", + "code": "P020300", + "name": "pde-P020300" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "CQkzkkkzpRT", + "name": "de-B020204", + "code": "B020204", + "externalsDescription": "", + "description": "de-description-B020204", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + }, + { + "id": "mUmeTWQ7qvZ", + "series": "405" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "uk6vjgubPaA", + "code": "P020304", + "name": "pde-P020304" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "u24zk6wAgFE", + "name": "de-B020209", + "code": "B020209", + "externalsDescription": "", + "description": "de-description-B020209", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "202" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "SIeeRXzyAIx", + "code": "P020309", + "name": "pde-P020309" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "io65ueHZUpQ", + "name": "de-P020306", + "code": "P020306", + "externalsDescription": "", + "description": "de-description-P020306", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "203" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "OWQzKQcWkqp", + "name": "de-P020102", + "code": "P020102", + "externalsDescription": "", + "description": "de-description-P020102", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "201" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "e6wdrrz9ZS6", + "name": "de-P020100", + "code": "P020100", + "externalsDescription": "", + "description": "de-description-P020100", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "201" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "CQPwg8Nipro", + "name": "de-P020104", + "code": "P020104", + "externalsDescription": "", + "description": "de-description-P020104", + "sectorsInfo": [ + { + "id": "GkiSljtLcOI", + "series": "201" + }, + { + "id": "m6wRIr4gijM", + "series": "600" + }, + { + "id": "O2wdK9G0m9f", + "series": "800" + } + ], + "mainSector": { + "id": "GkiSljtLcOI" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "akYJbGDrNVm", + "name": "de-P010402", + "code": "P010402", + "externalsDescription": "", + "description": "de-description-P010402", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "104" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "WS8XV4WWPE7", + "name": "de-B010200", + "code": "B010200", + "externalsDescription": "", + "description": "de-description-B010200", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "102" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "y2uyhyc7kqW", + "name": "de-B010003", + "code": "B010003", + "externalsDescription": "", + "description": "de-description-B010003", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "100" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "K6mAC5SiO29", + "name": "de-P010100", + "code": "P010100", + "externalsDescription": "OFDA, DFID", + "description": "de-description-P010100", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": ["DFID", "OFDA"], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "m0OkH08ROjX", + "name": "de-P010405", + "code": "P010405", + "externalsDescription": "", + "description": "de-description-P010405", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "104" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "KSKcmBgYrov", + "name": "de-P010109", + "code": "P010109", + "externalsDescription": "UNHCR", + "description": "de-description-P010109", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": ["UNHCR"], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "uG8477tQT0d", + "name": "de-P010103", + "code": "P010103", + "externalsDescription": "", + "description": "de-description-P010103", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "Wgd2n77F7Gt", + "name": "de-B010302", + "code": "B010302", + "externalsDescription": "DFID", + "description": "de-description-B010302", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "103" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "akYJbGDrNVm", + "code": "P010402", + "name": "pde-P010402" + } + ], + "countingMethod": "", + "externals": ["DFID"], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "K4ai530ChFX", + "name": "de-P010002", + "code": "P010002", + "externalsDescription": "", + "description": "de-description-P010002", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "100" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "Ou41h46tMcD", + "name": "de-P010107", + "code": "P010107", + "externalsDescription": "", + "description": "de-description-P010107", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "mEY5CsRrI0P", + "name": "de-P010111", + "code": "P010111", + "externalsDescription": "", + "description": "de-description-P010111", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "O0QXE8gn0OL", + "name": "de-P010404", + "code": "P010404", + "externalsDescription": "", + "description": "de-description-P010404", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "104" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "KecRLspBj0V", + "name": "de-P010104", + "code": "P010104", + "externalsDescription": "OFDA", + "description": "de-description-P010104", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": ["OFDA"], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "yqiqScaSAPi", + "name": "de-B010301", + "code": "B010301", + "externalsDescription": "", + "description": "de-description-B010301", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "103" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "SaUjrYpA3ZK", + "code": "P010401", + "name": "pde-P010401" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "e8Cw6hUXmT3", + "name": "de-P010403", + "code": "P010403", + "externalsDescription": "", + "description": "de-description-P010403", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "104" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "C0QLSs6ymHL", + "name": "de-P010102", + "code": "P010102", + "externalsDescription": "UNHCR", + "description": "de-description-P010102", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": ["UNHCR"], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "ik0ICagvIjm", + "name": "de-P010101", + "code": "P010101", + "externalsDescription": "GAC, UNHCR", + "description": "de-description-P010101", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": ["GAC", "UNHCR"], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "SeYl64icyGD", + "name": "de-B010205", + "code": "B010205", + "externalsDescription": "", + "description": "de-description-B010205", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "102" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "qCqieUNUMCb", + "name": "de-B010203", + "code": "B010203", + "externalsDescription": "", + "description": "de-description-B010203", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "102" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "WMAhrqMkpeN", + "name": "de-P010108", + "code": "P010108", + "externalsDescription": "", + "description": "de-description-P010108", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "yIqYlJnhYyj", + "name": "de-B010202", + "code": "B010202", + "externalsDescription": "", + "description": "de-description-B010202", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "102" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "SaUjrYpA3ZK", + "name": "de-P010401", + "code": "P010401", + "externalsDescription": "", + "description": "de-description-P010401", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "104" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "KuMdSyum1NF", + "name": "de-B019999", + "code": "B019999", + "externalsDescription": "", + "description": "de-description-B019999", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "199" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "custom", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "OIimwtgdcW8", + "name": "de-B010304", + "code": "B010304", + "externalsDescription": "", + "description": "de-description-B010304", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "103" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "O0QXE8gn0OL", + "code": "P010404", + "name": "pde-P010404" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "yKXntYu2GKF", + "name": "de-B010303", + "code": "B010303", + "externalsDescription": "", + "description": "de-description-B010303", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "103" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "e8Cw6hUXmT3", + "code": "P010403", + "name": "pde-P010403" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "esCSTOzV5CD", + "name": "de-B010004", + "code": "B010004", + "externalsDescription": "", + "description": "de-description-B010004", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "100" + }, + { + "id": "mUmeTWQ7qvZ", + "series": "403" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "q8C2wnYFK3T", + "name": "de-B010204", + "code": "B010204", + "externalsDescription": "", + "description": "de-description-B010204", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "102" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "aOUffyMug7t", + "name": "de-P010110", + "code": "P010110", + "externalsDescription": "", + "description": "de-description-P010110", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "C24wpyjZTGe", + "name": "de-B010201", + "code": "B010201", + "externalsDescription": "GAC", + "description": "de-description-B010201", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "102" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": ["GAC"], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "GYYltkqzWlI", + "name": "de-P010400", + "code": "P010400", + "externalsDescription": "", + "description": "de-description-P010400", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "104" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "KgETkXKU36b", + "name": "de-B010305", + "code": "B010305", + "externalsDescription": "", + "description": "de-description-B010305", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "103" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "m0OkH08ROjX", + "code": "P010405", + "name": "pde-P010405" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "mog7WefRWEM", + "name": "de-B010001", + "code": "B010001", + "externalsDescription": "", + "description": "de-description-B010001", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "100" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "aWmCNZi0Hcq", + "name": "de-B010300", + "code": "B010300", + "externalsDescription": "", + "description": "de-description-B010300", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "103" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "GYYltkqzWlI", + "code": "P010400", + "name": "pde-P010400" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "O2ZoxgfyNbk", + "name": "de-B010307", + "code": "B010307", + "externalsDescription": "DFID", + "description": "de-description-B010307", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "103" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "KocDGQNwOVN", + "code": "P010407", + "name": "pde-P010407" + } + ], + "countingMethod": "", + "externals": ["DFID"], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "qQy0N1xdwQ1", + "name": "de-P010105", + "code": "P010105", + "externalsDescription": "WFP", + "description": "de-description-P010105", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": ["WFP"], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "aqCOXJ5URiL", + "name": "de-P010112", + "code": "P010112", + "externalsDescription": "DFID", + "description": "de-description-P010112", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": ["DFID"], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "SQKAXCQeTyN", + "name": "de-B010306", + "code": "B010306", + "externalsDescription": "", + "description": "de-description-B010306", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "103" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "K4s5c1UqChK", + "code": "P010406", + "name": "pde-P010406" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "e87Q0bPAPFJ", + "name": "de-P010106", + "code": "P010106", + "externalsDescription": "", + "description": "de-description-P010106", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "101" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "K4s5c1UqChK", + "name": "de-P010406", + "code": "P010406", + "externalsDescription": "", + "description": "de-description-P010406", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "104" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "KocDGQNwOVN", + "name": "de-P010407", + "code": "P010407", + "externalsDescription": "", + "description": "de-description-P010407", + "sectorsInfo": [ + { + "id": "ieyBABjYyHO", + "series": "104" + } + ], + "mainSector": { + "id": "ieyBABjYyHO" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "Gyq0FR92NIq", + "name": "de-B110200", + "code": "B110200", + "externalsDescription": "", + "description": "de-description-B110200", + "sectorsInfo": [ + { + "id": "eig9M4QOT1S", + "series": "1102" + } + ], + "mainSector": { + "id": "eig9M4QOT1S" + }, + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "ic8kc26aeDU", + "name": "de-P110103", + "code": "P110103", + "externalsDescription": "", + "description": "de-description-P110103", + "sectorsInfo": [ + { + "id": "eig9M4QOT1S", + "series": "1101" + } + ], + "mainSector": { + "id": "eig9M4QOT1S" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "em64U7iG9nf", + "name": "de-P120200", + "code": "P120200", + "externalsDescription": "", + "description": "de-description-P120200", + "sectorsInfo": [ + { + "id": "eig9M4QOT1S", + "series": "1102" + }, + { + "id": "WuI0CSeCdn7", + "series": "1202" + } + ], + "mainSector": { + "id": "WuI0CSeCdn7" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "GMGoHRuQdCn", + "name": "de-B050105", + "code": "B050105", + "externalsDescription": "", + "description": "de-description-B050105", + "sectorsInfo": [ + { + "id": "eig9M4QOT1S", + "series": "1100" + }, + { + "id": "myAvqKoJpiN", + "series": "501" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "quu6c8OQNMv", + "code": "P050205", + "name": "pde-P050205" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "me6ajAPHCXT", + "name": "de-P110100", + "code": "P110100", + "externalsDescription": "", + "description": "de-description-P110100", + "sectorsInfo": [ + { + "id": "eig9M4QOT1S", + "series": "1101" + } + ], + "mainSector": { + "id": "eig9M4QOT1S" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "SyMHJiqHLOf", + "name": "de-P110102", + "code": "P110102", + "externalsDescription": "", + "description": "de-description-P110102", + "sectorsInfo": [ + { + "id": "eig9M4QOT1S", + "series": "1101" + } + ], + "mainSector": { + "id": "eig9M4QOT1S" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "eOATbcUKnJo", + "name": "de-P110101", + "code": "P110101", + "externalsDescription": "", + "description": "de-description-P110101", + "sectorsInfo": [ + { + "id": "eig9M4QOT1S", + "series": "1101" + } + ], + "mainSector": { + "id": "eig9M4QOT1S" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "quu6c8OQNMv", + "name": "de-P050205", + "code": "P050205", + "externalsDescription": "", + "description": "de-description-P050205", + "sectorsInfo": [ + { + "id": "eig9M4QOT1S", + "series": "1100" + }, + { + "id": "myAvqKoJpiN", + "series": "502" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "mUXPq3PNjxt", + "name": "de-P050202", + "code": "P050202", + "externalsDescription": "", + "description": "de-description-P050202", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "502" + }, + { + "id": "mUmeTWQ7qvZ", + "series": "401" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "uam4rE1aVKS", + "name": "de-B050100", + "code": "B050100", + "externalsDescription": "", + "description": "de-description-B050100", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "501" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "WUCuxbfpPJz", + "code": "P050200", + "name": "pde-P050200" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "WQWCLleCplZ", + "name": "de-B050104", + "code": "B050104", + "externalsDescription": "", + "description": "de-description-B050104", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "501" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "ycEfFA0R1zQ", + "code": "P050204", + "name": "pde-P050204" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "ycEfFA0R1zQ", + "name": "de-P050204", + "code": "P050204", + "externalsDescription": "", + "description": "de-description-P050204", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "502" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "qeGgLr2I471", + "name": "de-B050102", + "code": "B050102", + "externalsDescription": "", + "description": "de-description-B050102", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "501" + }, + { + "id": "mUmeTWQ7qvZ", + "series": "401" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "mUXPq3PNjxt", + "code": "P050202", + "name": "pde-P050202" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "qcSsqXKZW0U", + "name": "de-B040001", + "code": "B040001", + "externalsDescription": "", + "description": "de-description-B040001", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "501" + }, + { + "id": "mUmeTWQ7qvZ", + "series": "400" + }, + { + "id": "m6wRIr4gijM", + "series": "600" + } + ], + "mainSector": { + "id": "mUmeTWQ7qvZ" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "OoyOMBMIhfd", + "name": "de-B050103", + "code": "B050103", + "externalsDescription": "", + "description": "de-description-B050103", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "501" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "u8w5jXOxrHt", + "code": "P050203", + "name": "pde-P050203" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "u8w5jXOxrHt", + "name": "de-P050203", + "code": "P050203", + "externalsDescription": "", + "description": "de-description-P050203", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "502" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "mWsf03mYbcc", + "name": "de-P050201", + "code": "P050201", + "externalsDescription": "", + "description": "de-description-P050201", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "502" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "WUCuxbfpPJz", + "name": "de-P050200", + "code": "P050200", + "externalsDescription": "", + "description": "de-description-P050200", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "502" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "KYUWhiUFeUr", + "name": "de-B050101", + "code": "B050101", + "externalsDescription": "", + "description": "de-description-B050101", + "sectorsInfo": [ + { + "id": "myAvqKoJpiN", + "series": "501" + } + ], + "mainSector": { + "id": "myAvqKoJpiN" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "mWsf03mYbcc", + "code": "P050201", + "name": "pde-P050201" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "moEnj0e1v1m", + "name": "de-P040108", + "code": "P040108", + "externalsDescription": "", + "description": "de-description-P040108", + "sectorsInfo": [ + { + "id": "mUmeTWQ7qvZ", + "series": "401" + } + ], + "mainSector": { + "id": "mUmeTWQ7qvZ" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "S4gTBFCkNox", + "name": "de-B040300", + "code": "B040300", + "externalsDescription": "", + "description": "de-description-B040300", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "mUmeTWQ7qvZ", + "series": "403" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", - "pairedDataElements": [ + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "em6hBeB1Mgx", + "name": "de-P040506", + "code": "P040506", + "externalsDescription": "", + "description": "de-description-P040506", + "sectorsInfo": [ { - "id": "GqA7bkJ6GEN", - "code": "P020311", - "name": "pde-P020311" + "id": "mUmeTWQ7qvZ", + "series": "405" } ], + "mainSector": { + "id": "mUmeTWQ7qvZ" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "u24zk6wAgFE", - "name": "de-B020209", - "code": "B020209", - "description": "de-description-B020209", + "id": "G8sNvDftYFf", + "name": "de-P040102", + "code": "P040102", + "externalsDescription": "", + "description": "de-description-P040102", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "mUmeTWQ7qvZ", + "series": "401" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "ei0GG8tgs3O", + "name": "de-P040207", + "code": "P040207", + "externalsDescription": "", + "description": "de-description-P040207", + "sectorsInfo": [ { - "id": "SIeeRXzyAIx", - "code": "P020309", - "name": "pde-P020309" + "id": "mUmeTWQ7qvZ", + "series": "402" } ], + "mainSector": { + "id": "mUmeTWQ7qvZ" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GQyudNlGzkI", - "name": "de-P020300", - "code": "P020300", - "description": "de-description-P020300", + "id": "qoyCmL8q7xt", + "name": "de-P060106", + "code": "P060106", + "externalsDescription": "", + "description": "de-description-P060106", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "403" + }, + { + "id": "m6wRIr4gijM", + "series": "601" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "OWQzKQcWkqp", - "name": "de-P020102", - "code": "P020102", - "description": "de-description-P020102", + "id": "umgzhNhZZuG", + "name": "de-P040103", + "code": "P040103", + "externalsDescription": "", + "description": "de-description-P040103", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "201" + "id": "mUmeTWQ7qvZ", + "series": "401" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -1466,23 +4550,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "ua2JqES2mUL", - "name": "de-P020302", - "code": "P020302", - "description": "de-description-P020302", + "id": "SiIlD6JXwrh", + "name": "de-P040208", + "code": "P040208", + "externalsDescription": "", + "description": "de-description-P040208", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "402" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -1490,23 +4576,51 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CwIfK1Jiui2", - "name": "de-P020308", - "code": "P020308", - "description": "de-description-P020308", + "id": "CukJJn0tlAe", + "name": "de-B040004", + "code": "B040004", + "externalsDescription": "", + "description": "de-description-B040004", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "400" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "WIsDaZNKhVY", + "name": "de-P040104", + "code": "P040104", + "externalsDescription": "", + "description": "de-description-P040104", + "sectorsInfo": [ + { + "id": "mUmeTWQ7qvZ", + "series": "401" + } + ], + "mainSector": { + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -1514,23 +4628,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Wq0oITH2wna", - "name": "de-P020303", - "code": "P020303", - "description": "de-description-P020303", + "id": "aEWqGOerMCR", + "name": "de-P040206", + "code": "P040206", + "externalsDescription": "", + "description": "de-description-P040206", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "402" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -1538,53 +4654,77 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WwMbFHHKGgW", - "name": "de-B020202", - "code": "B020202", - "description": "de-description-B020202", + "id": "eQCEGPuzi8U", + "name": "de-B040301", + "code": "B040301", + "externalsDescription": "", + "description": "de-description-B040301", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "mUmeTWQ7qvZ", + "series": "403" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [ + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "mSspV1RxrUv", + "name": "de-P040105", + "code": "P040105", + "externalsDescription": "", + "description": "de-description-P040105", + "sectorsInfo": [ { - "id": "ua2JqES2mUL", - "code": "P020302", - "name": "pde-P020302" + "id": "mUmeTWQ7qvZ", + "series": "401" } ], + "mainSector": { + "id": "mUmeTWQ7qvZ" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "SIeeRXzyAIx", - "name": "de-P020309", - "code": "P020309", - "description": "de-description-P020309", + "id": "igegpsgZJtk", + "name": "de-P040507", + "code": "P040507", + "externalsDescription": "", + "description": "de-description-P040507", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "405" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -1592,95 +4732,129 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GqA7bkJ6GEN", - "name": "de-P020311", - "code": "P020311", - "description": "de-description-P020311", + "id": "WM8jnuXBsFM", + "name": "de-P040201", + "code": "P040201", + "externalsDescription": "", + "description": "de-description-P040201", + "sectorsInfo": [ + { + "id": "mUmeTWQ7qvZ", + "series": "402" + } + ], + "mainSector": { + "id": "mUmeTWQ7qvZ" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "KuAjqeAm3ud", + "name": "de-P040100", + "code": "P040100", + "externalsDescription": "", + "description": "de-description-P040100", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "401" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WEkZp4NJC29", - "name": "de-P020307", - "code": "P020307", - "description": "de-description-P020307", + "id": "aSyPclS5UKs", + "name": "de-B040003", + "code": "B040003", + "externalsDescription": "", + "description": "de-description-B040003", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "400" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "e6wdrrz9ZS6", - "name": "de-P020100", - "code": "P020100", - "description": "de-description-P020100", + "id": "Oocne32yGqU", + "name": "de-P040503", + "code": "P040503", + "externalsDescription": "", + "description": "de-description-P040503", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "201" + "id": "mUmeTWQ7qvZ", + "series": "405" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "W40WQqgOVuV", - "name": "de-P020101", - "code": "P020101", - "description": "de-description-P020101", + "id": "SiKGyiSSH6D", + "name": "de-P040107", + "code": "P040107", + "externalsDescription": "", + "description": "de-description-P040107", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "201" + "id": "mUmeTWQ7qvZ", + "series": "401" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -1688,87 +4862,77 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CQkzkkkzpRT", - "name": "de-B020204", - "code": "B020204", - "description": "de-description-B020204", + "id": "S60gcORJg7s", + "name": "de-P040401", + "code": "P040401", + "externalsDescription": "", + "description": "de-description-P040401", "sectorsInfo": [ - { - "id": "GkiSljtLcOI", - "series": "202" - }, { "id": "mUmeTWQ7qvZ", - "series": "405" + "series": "404" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "uk6vjgubPaA", - "code": "P020304", - "name": "pde-P020304" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Wk0ONOEwrQy", - "name": "de-B020206", - "code": "B020206", - "description": "de-description-B020206", + "id": "mc7d96pQsmj", + "name": "de-P040508", + "code": "P040508", + "externalsDescription": "", + "description": "de-description-P040508", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "mUmeTWQ7qvZ", + "series": "405" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "io65ueHZUpQ", - "code": "P020306", - "name": "pde-P020306" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "imakJ22nlwc", - "name": "de-P020103", - "code": "P020103", - "description": "de-description-P020103", + "id": "me0ILSeLpfv", + "name": "de-P040205", + "code": "P040205", + "externalsDescription": "", + "description": "de-description-P040205", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "201" + "id": "mUmeTWQ7qvZ", + "series": "402" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -1776,83 +4940,77 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "OKIqOe51jVq", - "name": "de-B020212", - "code": "B020212", - "description": "de-description-B020212", + "id": "uqoHFB0TTNE", + "name": "de-B040002", + "code": "B040002", + "externalsDescription": "", + "description": "de-description-B040002", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "mUmeTWQ7qvZ", + "series": "400" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "eGKS3DrQcTd", - "code": "P020312", - "name": "pde-P020312" - } - ], + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "iyAnflVLHS3", - "name": "de-B020208", - "code": "B020208", - "description": "de-description-B020208", + "id": "WGYVTfvRQTp", + "name": "de-P040202", + "code": "P040202", + "externalsDescription": "", + "description": "de-description-P040202", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "mUmeTWQ7qvZ", + "series": "402" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "CwIfK1Jiui2", - "code": "P020308", - "name": "pde-P020308" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uk6vjgubPaA", - "name": "de-P020304", - "code": "P020304", - "description": "de-description-P020304", + "id": "iMio9osPejA", + "name": "de-P040501", + "code": "P040501", + "externalsDescription": "", + "description": "de-description-P040501", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "405" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -1860,23 +5018,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WM4XoeIxJ5b", - "name": "de-P020305", - "code": "P020305", - "description": "de-description-P020305", + "id": "eacDOvAXM8w", + "name": "de-P040504", + "code": "P040504", + "externalsDescription": "", + "description": "de-description-P040504", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "405" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -1884,23 +5044,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "eeqkGzLMaSD", - "name": "de-P020106", - "code": "P020106", - "description": "de-description-P020106", + "id": "q0YJ8y0Cx17", + "name": "de-P040106", + "code": "P040106", + "externalsDescription": "", + "description": "de-description-P040106", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "201" + "id": "mUmeTWQ7qvZ", + "series": "401" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -1908,115 +5070,103 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "We61YNYyOX0", - "name": "de-B020205", - "code": "B020205", - "description": "de-description-B020205", + "id": "mKsNDllOoX6", + "name": "de-P040209", + "code": "P040209", + "externalsDescription": "", + "description": "de-description-P040209", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "mUmeTWQ7qvZ", + "series": "402" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "WM4XoeIxJ5b", - "code": "P020305", - "name": "pde-P020305" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yUGuwPFkBrj", - "name": "de-B020210", - "code": "B020210", - "description": "de-description-B020210", - "sectorsInfo": [ - { - "id": "GkiSljtLcOI", - "series": "202" - } - ], - "mainSector": { - "id": "GkiSljtLcOI" - }, - "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "aWaC0807qD4", - "code": "P020310", - "name": "pde-P020310" + "id": "uiMFMxYBPQu", + "name": "de-P040101", + "code": "P040101", + "externalsDescription": "", + "description": "de-description-P040101", + "sectorsInfo": [ + { + "id": "mUmeTWQ7qvZ", + "series": "401" } ], + "mainSector": { + "id": "mUmeTWQ7qvZ" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CQPwg8Nipro", - "name": "de-P020104", - "code": "P020104", - "description": "de-description-P020104", + "id": "SOgtZvFvRe7", + "name": "de-P040200", + "code": "P040200", + "externalsDescription": "", + "description": "de-description-P040200", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "201" - }, - { - "id": "m6wRIr4gijM", - "series": "600" - }, - { - "id": "O2wdK9G0m9f", - "series": "800" + "id": "mUmeTWQ7qvZ", + "series": "402" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qMBwrj5lDhd", - "name": "de-P020301", - "code": "P020301", - "description": "de-description-P020301", + "id": "usUXZo8S6ML", + "name": "de-P040402", + "code": "P040402", + "externalsDescription": "", + "description": "de-description-P040402", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "404" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2024,85 +5174,77 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "a8izG9FuLzQ", - "name": "de-B020201", - "code": "B020201", - "description": "de-description-B020201", + "id": "OE5jU8FBwjN", + "name": "de-P040500", + "code": "P040500", + "externalsDescription": "", + "description": "de-description-P040500", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "mUmeTWQ7qvZ", + "series": "405" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, - "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "qMBwrj5lDhd", - "code": "P020301", - "name": "pde-P020301" - } - ], + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "io65ueHZUpQ", - "name": "de-P020306", - "code": "P020306", - "description": "de-description-P020306", + "id": "WEgNESq1A7p", + "name": "de-P040400", + "code": "P040400", + "externalsDescription": "", + "description": "de-description-P040400", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "404" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "i0wZ2ZFmfkW", - "name": "de-P020105", - "code": "P020105", - "description": "de-description-P020105", + "id": "eusRdnJsPYS", + "name": "de-P040204", + "code": "P040204", + "externalsDescription": "", + "description": "de-description-P040204", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "201" - }, - { - "id": "mGQ5ckOTU8A", - "series": "101" - }, - { - "id": "eig9M4QOT1S", - "series": "1101" + "id": "mUmeTWQ7qvZ", + "series": "402" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2110,23 +5252,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "aWaC0807qD4", - "name": "de-P020310", - "code": "P020310", - "description": "de-description-P020310", + "id": "WmMjbrn9L5N", + "name": "de-P040203", + "code": "P040203", + "externalsDescription": "", + "description": "de-description-P040203", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "mUmeTWQ7qvZ", + "series": "402" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2134,23 +5278,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "iQCoaXYxswJ", - "name": "de-P020107", - "code": "P020107", - "description": "de-description-P020107", + "id": "GqglcVtN0jK", + "name": "de-P040502", + "code": "P040502", + "externalsDescription": "", + "description": "de-description-P040502", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "201" + "id": "mUmeTWQ7qvZ", + "series": "405" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2158,53 +5304,51 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yMqK9DKbA3X", - "name": "de-B020200", - "code": "B020200", - "description": "de-description-B020200", + "id": "WMaSv1ifNYB", + "name": "de-P040505", + "code": "P040505", + "externalsDescription": "", + "description": "de-description-P040505", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "mUmeTWQ7qvZ", + "series": "405" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "mUmeTWQ7qvZ" }, - "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "GQyudNlGzkI", - "code": "P020300", - "name": "pde-P020300" - } - ], + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "eGKS3DrQcTd", - "name": "de-P020312", - "code": "P020312", - "description": "de-description-P020312", + "id": "Cy6LP31Z6xH", + "name": "de-P060105", + "code": "P060105", + "externalsDescription": "", + "description": "de-description-P060105", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "203" + "id": "m6wRIr4gijM", + "series": "601" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2212,155 +5356,215 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "ayoVLBc4lFq", - "name": "de-B020207", - "code": "B020207", - "description": "de-description-B020207", + "id": "mY2DPBLfgsQ", + "name": "de-B030803", + "code": "B030803", + "externalsDescription": "", + "description": "de-description-B030803", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "m6wRIr4gijM", + "series": "600" + }, + { + "id": "Oq4A79YZZ8E", + "series": "308" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "WEkZp4NJC29", - "code": "P020307", - "name": "pde-P020307" + "id": "aE0itK0vaKD", + "code": "P030903", + "name": "pde-P030903" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "C4WY1eUmXkX", - "name": "de-B020203", - "code": "B020203", - "description": "de-description-B020203", + "id": "qeAkV6WFTeu", + "name": "de-B060507", + "code": "B060507", + "externalsDescription": "", + "description": "de-description-B060507", "sectorsInfo": [ { - "id": "GkiSljtLcOI", - "series": "202" + "id": "m6wRIr4gijM", + "series": "605" } ], "mainSector": { - "id": "GkiSljtLcOI" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "Wq0oITH2wna", - "code": "P020303", - "name": "pde-P020303" + "id": "ugA5YKLmYfV", + "code": "P060607", + "name": "pde-P060607" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "q8C2wnYFK3T", - "name": "de-B010204", - "code": "B010204", - "description": "de-description-B010204", + "id": "K6kd4hRr1kH", + "name": "de-P061302", + "code": "P061302", + "externalsDescription": "", + "description": "de-description-P061302", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "102" + "id": "m6wRIr4gijM", + "series": "613" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "mog7WefRWEM", - "name": "de-B010001", - "code": "B010001", - "description": "de-description-B010001", + "id": "mmej5Mq3wbX", + "name": "de-B061004", + "code": "B061004", + "externalsDescription": "", + "description": "de-description-B061004", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "100" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [], + "pairedDataElements": [ + { + "id": "CacPEBF0aKo", + "code": "P061104", + "name": "pde-P061104" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "qycHkj19wHq", + "name": "de-B060310", + "code": "B060310", + "externalsDescription": "", + "description": "de-description-B060310", + "sectorsInfo": [ + { + "id": "m6wRIr4gijM", + "series": "603" + } + ], + "mainSector": { + "id": "m6wRIr4gijM" + }, + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "CYMv53h7bTm", + "code": "P060410", + "name": "pde-P060410" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WS8XV4WWPE7", - "name": "de-B010200", - "code": "B010200", - "description": "de-description-B010200", + "id": "iu44dfenmM2", + "name": "de-B061201", + "code": "B061201", + "externalsDescription": "", + "description": "de-description-B061201", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "102" + "id": "m6wRIr4gijM", + "series": "612" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [], + "pairedDataElements": [ + { + "id": "WGwPVIMey32", + "code": "P061301", + "name": "pde-P061301" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "SaUjrYpA3ZK", - "name": "de-P010401", - "code": "P010401", - "description": "de-description-P010401", + "id": "GQwfJqqncbi", + "name": "de-P060902", + "code": "P060902", + "externalsDescription": "", + "description": "de-description-P060902", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "104" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2368,71 +5572,83 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Ou41h46tMcD", - "name": "de-P010107", - "code": "P010107", - "description": "de-description-P010107", + "id": "WySskSIZwaM", + "name": "de-B060307", + "code": "B060307", + "externalsDescription": "", + "description": "de-description-B060307", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "603" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "m2UNI7jfN5V", + "code": "P060407", + "name": "pde-P060407" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "aqCOXJ5URiL", - "name": "de-P010112", - "code": "P010112", - "description": "de-description-P010112", + "id": "KO8WSTdUWpm", + "name": "de-P060911", + "code": "P060911", + "externalsDescription": "", + "description": "de-description-P060911", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", - "externals": ["DFID"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "e8Cw6hUXmT3", - "name": "de-P010403", - "code": "P010403", - "description": "de-description-P010403", + "id": "yCE8yRRSLao", + "name": "de-P060103", + "code": "P060103", + "externalsDescription": "", + "description": "de-description-P060103", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "104" + "id": "m6wRIr4gijM", + "series": "601" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2440,23 +5656,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uG8477tQT0d", - "name": "de-P010103", - "code": "P010103", - "description": "de-description-P010103", + "id": "qmW2zE1ONWN", + "name": "de-P060605", + "code": "P060605", + "externalsDescription": "", + "description": "de-description-P060605", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "606" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2464,173 +5682,203 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KSKcmBgYrov", - "name": "de-P010109", - "code": "P010109", - "description": "de-description-P010109", + "id": "aE0itK0vaKD", + "name": "de-P030903", + "code": "P030903", + "externalsDescription": "", + "description": "de-description-P030903", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "600" + }, + { + "id": "Oq4A79YZZ8E", + "series": "309" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", - "externals": ["UNHCR"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yqiqScaSAPi", - "name": "de-B010301", - "code": "B010301", - "description": "de-description-B010301", + "id": "KcMn312se9Q", + "name": "de-B061003", + "code": "B061003", + "externalsDescription": "", + "description": "de-description-B061003", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "103" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "SaUjrYpA3ZK", - "code": "P010401", - "name": "pde-P010401" + "id": "OwG0d1xRQzS", + "code": "P061103", + "name": "pde-P061103" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "e87Q0bPAPFJ", - "name": "de-P010106", - "code": "P010106", - "description": "de-description-P010106", + "id": "uoglSrXOCOf", + "name": "de-B061007", + "code": "B061007", + "externalsDescription": "", + "description": "de-description-B061007", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "umeoo1RP3HI", + "code": "P061107", + "name": "pde-P061107" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "y2uyhyc7kqW", - "name": "de-B010003", - "code": "B010003", - "description": "de-description-B010003", + "id": "eu4CSzAmx3O", + "name": "de-P060906", + "code": "P060906", + "externalsDescription": "", + "description": "de-description-P060906", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "100" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "C0QLSs6ymHL", - "name": "de-P010102", - "code": "P010102", - "description": "de-description-P010102", + "id": "m2UNI7jfN5V", + "name": "de-P060407", + "code": "P060407", + "externalsDescription": "", + "description": "de-description-P060407", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", - "externals": ["UNHCR"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yIqYlJnhYyj", - "name": "de-B010202", - "code": "B010202", - "description": "de-description-B010202", + "id": "uQi0CU79Ivw", + "name": "de-B060504", + "code": "B060504", + "externalsDescription": "", + "description": "de-description-B060504", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "102" + "id": "m6wRIr4gijM", + "series": "605" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [], + "pairedDataElements": [ + { + "id": "qSkP0W5i6ds", + "code": "P060604", + "name": "pde-P060604" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "mEY5CsRrI0P", - "name": "de-P010111", - "code": "P010111", - "description": "de-description-P010111", + "id": "yY8LM2Sx4bu", + "name": "de-P061108", + "code": "P061108", + "externalsDescription": "", + "description": "de-description-P061108", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2638,155 +5886,173 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "K4s5c1UqChK", - "name": "de-P010406", - "code": "P010406", - "description": "de-description-P010406", + "id": "SysxWzx4KXX", + "name": "de-P060600", + "code": "P060600", + "externalsDescription": "", + "description": "de-description-P060600", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "104" + "id": "m6wRIr4gijM", + "series": "606" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KocDGQNwOVN", - "name": "de-P010407", - "code": "P010407", - "description": "de-description-P010407", + "id": "SKkfrCzpoxa", + "name": "de-B060301", + "code": "B060301", + "externalsDescription": "", + "description": "de-description-B060301", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "104" + "id": "m6wRIr4gijM", + "series": "603" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "iQYbMelX1S1", + "code": "P060401", + "name": "pde-P060401" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "aWmCNZi0Hcq", - "name": "de-B010300", - "code": "B010300", - "description": "de-description-B010300", + "id": "y4ApFxWXBfl", + "name": "de-B060303", + "code": "B060303", + "externalsDescription": "", + "description": "de-description-B060303", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "103" + "id": "m6wRIr4gijM", + "series": "603" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "GYYltkqzWlI", - "code": "P010400", - "name": "pde-P010400" + "id": "maoLtUEhHCC", + "code": "P060403", + "name": "pde-P060403" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "KgETkXKU36b", - "name": "de-B010305", - "code": "B010305", - "description": "de-description-B010305", + "id": "uUmy1Go3hhk", + "name": "de-P060913", + "code": "P060913", + "externalsDescription": "", + "description": "de-description-P060913", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "103" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "m0OkH08ROjX", - "code": "P010405", - "name": "pde-P010405" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KecRLspBj0V", - "name": "de-P010104", - "code": "P010104", - "description": "de-description-P010104", + "id": "S2ua4bjQVBz", + "name": "de-B060308", + "code": "B060308", + "externalsDescription": "", + "description": "de-description-B060308", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "603" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "u6m2wBChTgw", + "code": "P060408", + "name": "pde-P060408" + } + ], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WMAhrqMkpeN", - "name": "de-P010108", - "code": "P010108", - "description": "de-description-P010108", + "id": "OKAHBIGz0Ki", + "name": "de-P060104", + "code": "P060104", + "externalsDescription": "", + "description": "de-description-P060104", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "601" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2794,53 +6060,57 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, - "selectable": true - }, - { - "id": "OIimwtgdcW8", - "name": "de-B010304", - "code": "B010304", - "description": "de-description-B010304", + "selectable": true + }, + { + "id": "Wq0MmYQKeZu", + "name": "de-B061002", + "code": "B061002", + "externalsDescription": "", + "description": "de-description-B061002", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "103" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "O0QXE8gn0OL", - "code": "P010404", - "name": "pde-P010404" + "id": "W0SCUw6KViC", + "code": "P061102", + "name": "pde-P061102" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "K4ai530ChFX", - "name": "de-P010002", - "code": "P010002", - "description": "de-description-P010002", + "id": "yqcXYH5BZhD", + "name": "de-P061110", + "code": "P061110", + "externalsDescription": "", + "description": "de-description-P061110", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "100" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2848,46 +6118,51 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KuMdSyum1NF", - "name": "de-B019999", - "code": "B019999", - "description": "de-description-B019999", + "id": "SeSfonl5TFe", + "name": "de-P060900", + "code": "P060900", + "externalsDescription": "", + "description": "de-description-P060900", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, - "indicatorType": "custom", - "peopleOrBenefit": "benefit", + "indicatorType": "global", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "O0QXE8gn0OL", - "name": "de-P010404", - "code": "P010404", - "description": "de-description-P010404", + "id": "eEMXjhSACqn", + "name": "de-P060912", + "code": "P060912", + "externalsDescription": "", + "description": "de-description-P060912", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "104" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2895,95 +6170,115 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qQy0N1xdwQ1", - "name": "de-P010105", - "code": "P010105", - "description": "de-description-P010105", + "id": "WOcxJt5cj3q", + "name": "de-B061006", + "code": "B061006", + "externalsDescription": "", + "description": "de-description-B061006", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "mI0SRjrLyXT", + "code": "P061106", + "name": "pde-P061106" + } + ], "countingMethod": "", - "externals": ["WFP"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "SeYl64icyGD", - "name": "de-B010205", - "code": "B010205", - "description": "de-description-B010205", + "id": "eM4u0GT4JW2", + "name": "de-B061009", + "code": "B061009", + "externalsDescription": "", + "description": "de-description-B061009", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "102" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [], + "pairedDataElements": [ + { + "id": "yy0KNDBMMJy", + "code": "P061109", + "name": "pde-P061109" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "ik0ICagvIjm", - "name": "de-P010101", - "code": "P010101", - "description": "de-description-P010101", + "id": "CIawf1RwUhU", + "name": "de-P060402", + "code": "P060402", + "externalsDescription": "", + "description": "de-description-P060402", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", - "externals": ["GAC", "UNHCR"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "akYJbGDrNVm", - "name": "de-P010402", - "code": "P010402", - "description": "de-description-P010402", + "id": "iW2ZQqy7pHo", + "name": "de-P061105", + "code": "P061105", + "externalsDescription": "", + "description": "de-description-P061105", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "104" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -2991,77 +6286,83 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "C24wpyjZTGe", - "name": "de-B010201", - "code": "B010201", - "description": "de-description-B010201", + "id": "WYovLaeWDag", + "name": "de-B061000", + "code": "B061000", + "externalsDescription": "", + "description": "de-description-B061000", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "102" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", - "pairedDataElements": [], + "pairedDataElements": [ + { + "id": "eoEtWMiPJ54", + "code": "P061100", + "name": "pde-P061100" + } + ], "countingMethod": "", - "externals": ["GAC"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "yKXntYu2GKF", - "name": "de-B010303", - "code": "B010303", - "description": "de-description-B010303", + "id": "WGwPVIMey32", + "name": "de-P061301", + "code": "P061301", + "externalsDescription": "", + "description": "de-description-P061301", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "103" + "id": "m6wRIr4gijM", + "series": "613" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "e8Cw6hUXmT3", - "code": "P010403", - "name": "pde-P010403" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "aOUffyMug7t", - "name": "de-P010110", - "code": "P010110", - "description": "de-description-P010110", + "id": "uc6EozXZBeB", + "name": "de-P060908", + "code": "P060908", + "externalsDescription": "", + "description": "de-description-P060908", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -3069,261 +6370,297 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "O2ZoxgfyNbk", - "name": "de-B010307", - "code": "B010307", - "description": "de-description-B010307", + "id": "ys6d9CavDJy", + "name": "de-B061005", + "code": "B061005", + "externalsDescription": "", + "description": "de-description-B061005", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "103" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "KocDGQNwOVN", - "code": "P010407", - "name": "pde-P010407" + "id": "iW2ZQqy7pHo", + "code": "P061105", + "name": "pde-P061105" } ], "countingMethod": "", - "externals": ["DFID"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "GYYltkqzWlI", - "name": "de-P010400", - "code": "P010400", - "description": "de-description-P010400", + "id": "maolqzbs4K3", + "name": "de-P081601", + "code": "P081601", + "externalsDescription": "", + "description": "de-description-P081601", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "104" + "id": "m6wRIr4gijM", + "series": "600" + }, + { + "id": "O2wdK9G0m9f", + "series": "816" + }, + { + "id": "i8qug2Himby", + "series": "700" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "O2wdK9G0m9f" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qCqieUNUMCb", - "name": "de-B010203", - "code": "B010203", - "description": "de-description-B010203", + "id": "Ck0YFFjEoyo", + "name": "de-P060608", + "code": "P060608", + "externalsDescription": "", + "description": "de-description-P060608", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "102" + "id": "m6wRIr4gijM", + "series": "606" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "esCSTOzV5CD", - "name": "de-B010004", - "code": "B010004", - "description": "de-description-B010004", + "id": "iSUjjR1nolD", + "name": "de-B061001", + "code": "B061001", + "externalsDescription": "", + "description": "de-description-B061001", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "100" - }, - { - "id": "mUmeTWQ7qvZ", - "series": "403" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [], + "pairedDataElements": [ + { + "id": "yeeMeFfZUfi", + "code": "P061101", + "name": "pde-P061101" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "SQKAXCQeTyN", - "name": "de-B010306", - "code": "B010306", - "description": "de-description-B010306", + "id": "KUKoGeVzFTC", + "name": "de-P060001", + "code": "P060001", + "externalsDescription": "", + "description": "de-description-P060001", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "103" + "id": "m6wRIr4gijM", + "series": "600" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "K4s5c1UqChK", - "code": "P010406", - "name": "pde-P010406" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Wgd2n77F7Gt", - "name": "de-B010302", - "code": "B010302", - "description": "de-description-B010302", + "id": "qGKssff9JwK", + "name": "de-B060306", + "code": "B060306", + "externalsDescription": "", + "description": "de-description-B060306", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "103" + "id": "m6wRIr4gijM", + "series": "603" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "akYJbGDrNVm", - "code": "P010402", - "name": "pde-P010402" + "id": "CoyQTaNQdE8", + "code": "P060406", + "name": "pde-P060406" } ], "countingMethod": "", - "externals": ["DFID"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "m0OkH08ROjX", - "name": "de-P010405", - "code": "P010405", - "description": "de-description-P010405", + "id": "Gc65mD3LGEp", + "name": "de-B060511", + "code": "B060511", + "externalsDescription": "", + "description": "de-description-B060511", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "104" + "id": "m6wRIr4gijM", + "series": "605" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "yCWee9GmYYS", + "code": "P060611", + "name": "pde-P060611" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "K6mAC5SiO29", - "name": "de-P010100", - "code": "P010100", - "description": "de-description-P010100", + "id": "maoLtUEhHCC", + "name": "de-P060403", + "code": "P060403", + "externalsDescription": "", + "description": "de-description-P060403", "sectorsInfo": [ { - "id": "mGQ5ckOTU8A", - "series": "101" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "mGQ5ckOTU8A" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", - "externals": ["DFID", "OFDA"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "SyMHJiqHLOf", - "name": "de-P110102", - "code": "P110102", - "description": "de-description-P110102", + "id": "qWykpPAsJe9", + "name": "de-B060500", + "code": "B060500", + "externalsDescription": "", + "description": "de-description-B060500", "sectorsInfo": [ { - "id": "eig9M4QOT1S", - "series": "1101" + "id": "m6wRIr4gijM", + "series": "605" } ], "mainSector": { - "id": "eig9M4QOT1S" + "id": "m6wRIr4gijM" }, - "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "SysxWzx4KXX", + "code": "P060600", + "name": "pde-P060600" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "ic8kc26aeDU", - "name": "de-P110103", - "code": "P110103", - "description": "de-description-P110103", + "id": "Wayu8KYftDj", + "name": "de-P060404", + "code": "P060404", + "externalsDescription": "", + "description": "de-description-P060404", "sectorsInfo": [ { - "id": "eig9M4QOT1S", - "series": "1101" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "eig9M4QOT1S" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -3331,137 +6668,135 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "quu6c8OQNMv", - "name": "de-P050205", - "code": "P050205", - "description": "de-description-P050205", + "id": "G00cLpvqpvV", + "name": "de-B060202", + "code": "B060202", + "externalsDescription": "", + "description": "de-description-B060202", "sectorsInfo": [ { - "id": "eig9M4QOT1S", - "series": "1100" - }, - { - "id": "myAvqKoJpiN", - "series": "502" + "id": "m6wRIr4gijM", + "series": "602" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "me6ajAPHCXT", - "name": "de-P110100", - "code": "P110100", - "description": "de-description-P110100", + "id": "yy0KNDBMMJy", + "name": "de-P061109", + "code": "P061109", + "externalsDescription": "", + "description": "de-description-P061109", "sectorsInfo": [ { - "id": "eig9M4QOT1S", - "series": "1101" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "eig9M4QOT1S" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GMGoHRuQdCn", - "name": "de-B050105", - "code": "B050105", - "description": "de-description-B050105", + "id": "GUw5tgJcacN", + "name": "de-B061202", + "code": "B061202", + "externalsDescription": "", + "description": "de-description-B061202", "sectorsInfo": [ { - "id": "eig9M4QOT1S", - "series": "1100" - }, - { - "id": "myAvqKoJpiN", - "series": "501" + "id": "m6wRIr4gijM", + "series": "612" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "quu6c8OQNMv", - "code": "P050205", - "name": "pde-P050205" + "id": "K6kd4hRr1kH", + "code": "P061302", + "name": "pde-P061302" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "em64U7iG9nf", - "name": "de-P120200", - "code": "P120200", - "description": "de-description-P120200", + "id": "W0SCUw6KViC", + "name": "de-P061102", + "code": "P061102", + "externalsDescription": "", + "description": "de-description-P061102", "sectorsInfo": [ { - "id": "eig9M4QOT1S", - "series": "1100" - }, - { - "id": "WuI0CSeCdn7", - "series": "1202" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "WuI0CSeCdn7" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "eOATbcUKnJo", - "name": "de-P110101", - "code": "P110101", - "description": "de-description-P110101", + "id": "OwG0d1xRQzS", + "name": "de-P061103", + "code": "P061103", + "externalsDescription": "", + "description": "de-description-P061103", "sectorsInfo": [ { - "id": "eig9M4QOT1S", - "series": "1101" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "eig9M4QOT1S" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -3469,241 +6804,263 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Gyq0FR92NIq", - "name": "de-B110200", - "code": "B110200", - "description": "de-description-B110200", + "id": "umeoo1RP3HI", + "name": "de-P061107", + "code": "P061107", + "externalsDescription": "", + "description": "de-description-P061107", "sectorsInfo": [ { - "id": "eig9M4QOT1S", - "series": "1102" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "eig9M4QOT1S" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", - "peopleOrBenefit": "benefit", + "indicatorType": "sub", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uam4rE1aVKS", - "name": "de-B050100", - "code": "B050100", - "description": "de-description-B050100", + "id": "ussN3RsUlG9", + "name": "de-B060700", + "code": "B060700", + "externalsDescription": "", + "description": "de-description-B060700", "sectorsInfo": [ { - "id": "myAvqKoJpiN", - "series": "501" + "id": "m6wRIr4gijM", + "series": "607" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "WUCuxbfpPJz", - "code": "P050200", - "name": "pde-P050200" + "id": "a6SyfkuUcqv", + "code": "P060800", + "name": "pde-P060800" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WQWCLleCplZ", - "name": "de-B050104", - "code": "B050104", - "description": "de-description-B050104", + "id": "yC87289axI2", + "name": "de-P060905", + "code": "P060905", + "externalsDescription": "", + "description": "de-description-P060905", "sectorsInfo": [ { - "id": "myAvqKoJpiN", - "series": "501" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "ycEfFA0R1zQ", - "code": "P050204", - "name": "pde-P050204" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "mWsf03mYbcc", - "name": "de-P050201", - "code": "P050201", - "description": "de-description-P050201", + "id": "GqoFCvfjwIi", + "name": "de-B060304", + "code": "B060304", + "externalsDescription": "", + "description": "de-description-B060304", "sectorsInfo": [ { - "id": "myAvqKoJpiN", - "series": "502" + "id": "m6wRIr4gijM", + "series": "603" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "Wayu8KYftDj", + "code": "P060404", + "name": "pde-P060404" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WUCuxbfpPJz", - "name": "de-P050200", - "code": "P050200", - "description": "de-description-P050200", + "id": "CmuTB25WhVC", + "name": "de-B060508", + "code": "B060508", + "externalsDescription": "", + "description": "de-description-B060508", "sectorsInfo": [ { - "id": "myAvqKoJpiN", - "series": "502" + "id": "m6wRIr4gijM", + "series": "605" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "Ck0YFFjEoyo", + "code": "P060608", + "name": "pde-P060608" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "qcSsqXKZW0U", - "name": "de-B040001", - "code": "B040001", - "description": "de-description-B040001", + "id": "mYAB3bCK8Nz", + "name": "de-P060610", + "code": "P060610", + "externalsDescription": "", + "description": "de-description-P060610", "sectorsInfo": [ - { - "id": "myAvqKoJpiN", - "series": "501" - }, - { - "id": "mUmeTWQ7qvZ", - "series": "400" - }, { "id": "m6wRIr4gijM", - "series": "600" + "series": "606" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "u8w5jXOxrHt", - "name": "de-P050203", - "code": "P050203", - "description": "de-description-P050203", + "id": "uOYLykMs3nd", + "name": "de-B060509", + "code": "B060509", + "externalsDescription": "", + "description": "de-description-B060509", "sectorsInfo": [ { - "id": "myAvqKoJpiN", - "series": "502" + "id": "m6wRIr4gijM", + "series": "605" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "uYG4SKGuqrV", + "code": "P060609", + "name": "pde-P060609" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "KYUWhiUFeUr", - "name": "de-B050101", - "code": "B050101", - "description": "de-description-B050101", + "id": "qesC4uvl9Ah", + "name": "de-B060309", + "code": "B060309", + "externalsDescription": "", + "description": "de-description-B060309", "sectorsInfo": [ { - "id": "myAvqKoJpiN", - "series": "501" + "id": "m6wRIr4gijM", + "series": "603" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "mWsf03mYbcc", - "code": "P050201", - "name": "pde-P050201" + "id": "GuozyubVBZP", + "code": "P060409", + "name": "pde-P060409" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "ycEfFA0R1zQ", - "name": "de-P050204", - "code": "P050204", - "description": "de-description-P050204", + "id": "mwoRWmp5FQc", + "name": "de-P060603", + "code": "P060603", + "externalsDescription": "", + "description": "de-description-P060603", "sectorsInfo": [ { - "id": "myAvqKoJpiN", - "series": "502" + "id": "m6wRIr4gijM", + "series": "606" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -3711,91 +7068,91 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qeGgLr2I471", - "name": "de-B050102", - "code": "B050102", - "description": "de-description-B050102", + "id": "mu2b9Ivde6J", + "name": "de-B081500", + "code": "B081500", + "externalsDescription": "", + "description": "de-description-B081500", "sectorsInfo": [ { - "id": "myAvqKoJpiN", - "series": "501" + "id": "m6wRIr4gijM", + "series": "600" }, { - "id": "mUmeTWQ7qvZ", - "series": "401" + "id": "O2wdK9G0m9f", + "series": "815" + }, + { + "id": "i8qug2Himby", + "series": "700" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "mUXPq3PNjxt", - "code": "P050202", - "name": "pde-P050202" + "id": "iYEDR850FFL", + "code": "P081600", + "name": "pde-P081600" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "OoyOMBMIhfd", - "name": "de-B050103", - "code": "B050103", - "description": "de-description-B050103", + "id": "yeeMeFfZUfi", + "name": "de-P061101", + "code": "P061101", + "externalsDescription": "", + "description": "de-description-P061101", "sectorsInfo": [ { - "id": "myAvqKoJpiN", - "series": "501" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "u8w5jXOxrHt", - "code": "P050203", - "name": "pde-P050203" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "mUXPq3PNjxt", - "name": "de-P050202", - "code": "P050202", - "description": "de-description-P050202", + "id": "CoyQTaNQdE8", + "name": "de-P060406", + "code": "P060406", + "externalsDescription": "", + "description": "de-description-P060406", "sectorsInfo": [ { - "id": "myAvqKoJpiN", - "series": "502" - }, - { - "id": "mUmeTWQ7qvZ", - "series": "401" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "myAvqKoJpiN" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -3803,23 +7160,21 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qoyCmL8q7xt", - "name": "de-P060106", - "code": "P060106", - "description": "de-description-P060106", + "id": "quk3JQrF0Vb", + "name": "de-P060606", + "code": "P060606", + "externalsDescription": "", + "description": "de-description-P060606", "sectorsInfo": [ - { - "id": "mUmeTWQ7qvZ", - "series": "403" - }, { "id": "m6wRIr4gijM", - "series": "601" + "series": "606" } ], "mainSector": { @@ -3831,71 +7186,89 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WM8jnuXBsFM", - "name": "de-P040201", - "code": "P040201", - "description": "de-description-P040201", + "id": "Cks5Ap9OGCJ", + "name": "de-B061008", + "code": "B061008", + "externalsDescription": "", + "description": "de-description-B061008", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "yY8LM2Sx4bu", + "code": "P061108", + "name": "pde-P061108" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WmMjbrn9L5N", - "name": "de-P040203", - "code": "P040203", - "description": "de-description-P040203", + "id": "iw2nTn0oV5o", + "name": "de-B060302", + "code": "B060302", + "externalsDescription": "", + "description": "de-description-B060302", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "603" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "CIawf1RwUhU", + "code": "P060402", + "name": "pde-P060402" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "em6hBeB1Mgx", - "name": "de-P040506", - "code": "P040506", - "description": "de-description-P040506", + "id": "u6m2wBChTgw", + "name": "de-P060408", + "code": "P060408", + "externalsDescription": "", + "description": "de-description-P060408", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "405" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -3903,23 +7276,29 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "iMio9osPejA", - "name": "de-P040501", - "code": "P040501", - "description": "de-description-P040501", + "id": "Oacl33jhIKS", + "name": "de-P030706", + "code": "P030706", + "externalsDescription": "", + "description": "de-description-P030706", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "405" + "id": "m6wRIr4gijM", + "series": "600" + }, + { + "id": "Oq4A79YZZ8E", + "series": "307" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -3927,143 +7306,161 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "igegpsgZJtk", - "name": "de-P040507", - "code": "P040507", - "description": "de-description-P040507", + "id": "eaSaFDCJJ5A", + "name": "de-P060400", + "code": "P060400", + "externalsDescription": "", + "description": "de-description-P060400", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "405" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "aSyPclS5UKs", - "name": "de-B040003", - "code": "B040003", - "description": "de-description-B040003", + "id": "a4qI98GSL7N", + "name": "de-B060305", + "code": "B060305", + "externalsDescription": "", + "description": "de-description-B060305", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "400" + "id": "m6wRIr4gijM", + "series": "603" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [], + "pairedDataElements": [ + { + "id": "Co00LfH1Jnk", + "code": "P060405", + "name": "pde-P060405" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "mSspV1RxrUv", - "name": "de-P040105", - "code": "P040105", - "description": "de-description-P040105", + "id": "i0WWUhzisEK", + "name": "de-B060204", + "code": "B060204", + "externalsDescription": "", + "description": "de-description-B060204", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "401" + "id": "m6wRIr4gijM", + "series": "602" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "me0ILSeLpfv", - "name": "de-P040205", - "code": "P040205", - "description": "de-description-P040205", + "id": "a6SyfkuUcqv", + "name": "de-P060800", + "code": "P060800", + "externalsDescription": "", + "description": "de-description-P060800", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "608" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "SOgtZvFvRe7", - "name": "de-P040200", - "code": "P040200", - "description": "de-description-P040200", + "id": "CYMv53h7bTm", + "name": "de-P060410", + "code": "P060410", + "externalsDescription": "", + "description": "de-description-P060410", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WMaSv1ifNYB", - "name": "de-P040505", - "code": "P040505", - "description": "de-description-P040505", + "id": "Kmmux5Rvbku", + "name": "de-P060904", + "code": "P060904", + "externalsDescription": "", + "description": "de-description-P060904", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "405" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4071,23 +7468,57 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "CagfF9DPOuL", + "name": "de-B060300", + "code": "B060300", + "externalsDescription": "", + "description": "de-description-B060300", + "sectorsInfo": [ + { + "id": "m6wRIr4gijM", + "series": "603" + } + ], + "mainSector": { + "id": "m6wRIr4gijM" + }, + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "eaSaFDCJJ5A", + "code": "P060400", + "name": "pde-P060400" + } + ], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "eQCEGPuzi8U", - "name": "de-B040301", - "code": "B040301", - "description": "de-description-B040301", + "id": "WmAdRlulZyY", + "name": "de-P060914", + "code": "P060914", + "externalsDescription": "", + "description": "de-description-P060914", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "403" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4095,47 +7526,51 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uqoHFB0TTNE", - "name": "de-B040002", - "code": "B040002", - "description": "de-description-B040002", + "id": "WSYRjif67DQ", + "name": "de-P060101", + "code": "P060101", + "externalsDescription": "", + "description": "de-description-P060101", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "400" + "id": "m6wRIr4gijM", + "series": "601" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "umgzhNhZZuG", - "name": "de-P040103", - "code": "P040103", - "description": "de-description-P040103", + "id": "CacPEBF0aKo", + "name": "de-P061104", + "code": "P061104", + "externalsDescription": "", + "description": "de-description-P061104", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "401" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4143,23 +7578,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GqglcVtN0jK", - "name": "de-P040502", - "code": "P040502", - "description": "de-description-P040502", + "id": "iQYbMelX1S1", + "name": "de-P060401", + "code": "P060401", + "externalsDescription": "", + "description": "de-description-P060401", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "405" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4167,23 +7604,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "SiKGyiSSH6D", - "name": "de-P040107", - "code": "P040107", - "description": "de-description-P040107", + "id": "eWcXkOVD49j", + "name": "de-P060909", + "code": "P060909", + "externalsDescription": "", + "description": "de-description-P060909", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "401" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4191,23 +7630,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "OE5jU8FBwjN", - "name": "de-P040500", - "code": "P040500", - "description": "de-description-P040500", + "id": "eoEtWMiPJ54", + "name": "de-P061100", + "code": "P061100", + "externalsDescription": "", + "description": "de-description-P061100", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "405" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "global", "peopleOrBenefit": "people", @@ -4215,23 +7656,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "eusRdnJsPYS", - "name": "de-P040204", - "code": "P040204", - "description": "de-description-P040204", + "id": "Co00LfH1Jnk", + "name": "de-P060405", + "code": "P060405", + "externalsDescription": "", + "description": "de-description-P060405", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4239,71 +7682,91 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CukJJn0tlAe", - "name": "de-B040004", - "code": "B040004", - "description": "de-description-B040004", + "id": "mI0SRjrLyXT", + "name": "de-P061106", + "code": "P061106", + "externalsDescription": "", + "description": "de-description-P061106", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "400" + "id": "m6wRIr4gijM", + "series": "611" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "eacDOvAXM8w", - "name": "de-P040504", - "code": "P040504", - "description": "de-description-P040504", + "id": "CeUzDYi7iSt", + "name": "de-B060505", + "code": "B060505", + "externalsDescription": "", + "description": "de-description-B060505", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "405" + "id": "m6wRIr4gijM", + "series": "605" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "qmW2zE1ONWN", + "code": "P060605", + "name": "pde-P060605" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "S4gTBFCkNox", - "name": "de-B040300", - "code": "B040300", - "description": "de-description-B040300", + "id": "iYEDR850FFL", + "name": "de-P081600", + "code": "P081600", + "externalsDescription": "", + "description": "de-description-P081600", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "403" + "id": "m6wRIr4gijM", + "series": "600" + }, + { + "id": "O2wdK9G0m9f", + "series": "816" + }, + { + "id": "i8qug2Himby", + "series": "700" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "O2wdK9G0m9f" }, "indicatorType": "global", "peopleOrBenefit": "people", @@ -4311,71 +7774,83 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "aEWqGOerMCR", - "name": "de-P040206", - "code": "P040206", - "description": "de-description-P040206", + "id": "yWqoXCcfNTy", + "name": "de-B060200", + "code": "B060200", + "externalsDescription": "", + "description": "de-description-B060200", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "602" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, - "indicatorType": "sub", - "peopleOrBenefit": "people", + "indicatorType": "global", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "mKsNDllOoX6", - "name": "de-P040209", - "code": "P040209", - "description": "de-description-P040209", + "id": "mKIZRFEeDhv", + "name": "de-B060502", + "code": "B060502", + "externalsDescription": "", + "description": "de-description-B060502", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "605" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "Oog3ay5wQ8n", + "code": "P060602", + "name": "pde-P060602" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "usUXZo8S6ML", - "name": "de-P040402", - "code": "P040402", - "description": "de-description-P040402", + "id": "yWi8sZoGeKl", + "name": "de-P060907", + "code": "P060907", + "externalsDescription": "", + "description": "de-description-P060907", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "404" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4383,119 +7858,135 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uiMFMxYBPQu", - "name": "de-P040101", - "code": "P040101", - "description": "de-description-P040101", + "id": "y8UJqdFT1aD", + "name": "de-B061010", + "code": "B061010", + "externalsDescription": "", + "description": "de-description-B061010", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "401" + "id": "m6wRIr4gijM", + "series": "610" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "yqcXYH5BZhD", + "code": "P061110", + "name": "pde-P061110" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "G8sNvDftYFf", - "name": "de-P040102", - "code": "P040102", - "description": "de-description-P040102", + "id": "ya21TqO05jE", + "name": "de-B060201", + "code": "B060201", + "externalsDescription": "", + "description": "de-description-B060201", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "401" + "id": "m6wRIr4gijM", + "series": "602" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "ei0GG8tgs3O", - "name": "de-P040207", - "code": "P040207", - "description": "de-description-P040207", + "id": "WUItTX5YzPL", + "name": "de-P060100", + "code": "P060100", + "externalsDescription": "", + "description": "de-description-P060100", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "601" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KuAjqeAm3ud", - "name": "de-P040100", - "code": "P040100", - "description": "de-description-P040100", + "id": "ugA5YKLmYfV", + "name": "de-P060607", + "code": "P060607", + "externalsDescription": "", + "description": "de-description-P060607", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "401" + "id": "m6wRIr4gijM", + "series": "606" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "q0YJ8y0Cx17", - "name": "de-P040106", - "code": "P040106", - "description": "de-description-P040106", + "id": "ec8AkoYUWiA", + "name": "de-P060910", + "code": "P060910", + "externalsDescription": "", + "description": "de-description-P060910", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "401" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4503,47 +7994,57 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "moEnj0e1v1m", - "name": "de-P040108", - "code": "P040108", - "description": "de-description-P040108", + "id": "qc4plvUBscw", + "name": "de-B060506", + "code": "B060506", + "externalsDescription": "", + "description": "de-description-B060506", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "605" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "quk3JQrF0Vb", + "code": "P060606", + "name": "pde-P060606" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WIsDaZNKhVY", - "name": "de-P040104", - "code": "P040104", - "description": "de-description-P040104", + "id": "ygQdbV1JA14", + "name": "de-P060901", + "code": "P060901", + "externalsDescription": "", + "description": "de-description-P060901", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "401" + "id": "m6wRIr4gijM", + "series": "609" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4551,71 +8052,83 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WGYVTfvRQTp", - "name": "de-P040202", - "code": "P040202", - "description": "de-description-P040202", + "id": "Kk4miRS84h8", + "name": "de-P061300", + "code": "P061300", + "externalsDescription": "", + "description": "de-description-P061300", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "613" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "SiIlD6JXwrh", - "name": "de-P040208", - "code": "P040208", - "description": "de-description-P040208", + "id": "OYoxGoh5hnB", + "name": "de-B060503", + "code": "B060503", + "externalsDescription": "", + "description": "de-description-B060503", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "402" + "id": "m6wRIr4gijM", + "series": "605" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "mwoRWmp5FQc", + "code": "P060603", + "name": "pde-P060603" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "S60gcORJg7s", - "name": "de-P040401", - "code": "P040401", - "description": "de-description-P040401", + "id": "KYiLxwJhtm2", + "name": "de-P060102", + "code": "P060102", + "externalsDescription": "", + "description": "de-description-P060102", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "404" + "id": "m6wRIr4gijM", + "series": "601" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4623,47 +8136,51 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WEgNESq1A7p", - "name": "de-P040400", - "code": "P040400", - "description": "de-description-P040400", + "id": "GuozyubVBZP", + "name": "de-P060409", + "code": "P060409", + "externalsDescription": "", + "description": "de-description-P060409", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "404" + "id": "m6wRIr4gijM", + "series": "604" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "mc7d96pQsmj", - "name": "de-P040508", - "code": "P040508", - "description": "de-description-P040508", + "id": "yCWee9GmYYS", + "name": "de-P060611", + "code": "P060611", + "externalsDescription": "", + "description": "de-description-P060611", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "405" + "id": "m6wRIr4gijM", + "series": "606" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4671,23 +8188,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Oocne32yGqU", - "name": "de-P040503", - "code": "P040503", - "description": "de-description-P040503", + "id": "eQe0z9SXqm6", + "name": "de-P060601", + "code": "P060601", + "externalsDescription": "", + "description": "de-description-P060601", "sectorsInfo": [ { - "id": "mUmeTWQ7qvZ", - "series": "405" + "id": "m6wRIr4gijM", + "series": "606" } ], "mainSector": { - "id": "mUmeTWQ7qvZ" + "id": "m6wRIr4gijM" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4695,15 +8214,17 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yWqoXCcfNTy", - "name": "de-B060200", - "code": "B060200", - "description": "de-description-B060200", + "id": "yGIr6ZotIs8", + "name": "de-B060203", + "code": "B060203", + "externalsDescription": "", + "description": "de-description-B060203", "sectorsInfo": [ { "id": "m6wRIr4gijM", @@ -4713,25 +8234,27 @@ "mainSector": { "id": "m6wRIr4gijM" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "a4qI98GSL7N", - "name": "de-B060305", - "code": "B060305", - "description": "de-description-B060305", + "id": "e0MfXUf9Kqq", + "name": "de-B060501", + "code": "B060501", + "externalsDescription": "", + "description": "de-description-B060501", "sectorsInfo": [ { "id": "m6wRIr4gijM", - "series": "603" + "series": "605" } ], "mainSector": { @@ -4741,81 +8264,87 @@ "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "WSOU9kw6Htr", - "code": "P060505", - "name": "pde-P060505" + "id": "eQe0z9SXqm6", + "code": "P060601", + "name": "pde-P060601" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "m2MjfqFFmjs", - "name": "de-B060402", - "code": "B060402", - "description": "de-description-B060402", + "id": "ySUrbPZBI3d", + "name": "de-P060903", + "code": "P060903", + "externalsDescription": "", + "description": "de-description-P060903", "sectorsInfo": [ { "id": "m6wRIr4gijM", - "series": "604" + "series": "609" } ], "mainSector": { "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "KQS9tdttTyi", - "code": "P060512", - "name": "pde-P060512" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "eESSFKKADfq", - "name": "de-P060811", - "code": "P060811", - "description": "de-description-P060811", + "id": "aw6FV833DML", + "name": "de-B060510", + "code": "B060510", + "externalsDescription": "", + "description": "de-description-B060510", "sectorsInfo": [ { "id": "m6wRIr4gijM", - "series": "608" + "series": "605" } ], "mainSector": { "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "mYAB3bCK8Nz", + "code": "P060610", + "name": "pde-P060610" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "u88V446Yrvb", - "name": "de-P060808", - "code": "P060808", - "description": "de-description-P060808", + "id": "Oog3ay5wQ8n", + "name": "de-P060602", + "code": "P060602", + "externalsDescription": "", + "description": "de-description-P060602", "sectorsInfo": [ { "id": "m6wRIr4gijM", - "series": "608" + "series": "606" } ], "mainSector": { @@ -4827,125 +8356,153 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WSOU9kw6Htr", - "name": "de-P060505", - "code": "P060505", - "description": "de-description-P060505", + "id": "ecAfQfpTsfJ", + "name": "de-B081501", + "code": "B081501", + "externalsDescription": "", + "description": "de-description-B081501", "sectorsInfo": [ { "id": "m6wRIr4gijM", - "series": "605" + "series": "600" + }, + { + "id": "O2wdK9G0m9f", + "series": "815" + }, + { + "id": "i8qug2Himby", + "series": "700" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "maolqzbs4K3", + "code": "P081601", + "name": "pde-P081601" + } + ], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "KUKoGeVzFTC", - "name": "de-P060001", - "code": "P060001", - "description": "de-description-P060001", + "id": "Go0cUEh88nS", + "name": "de-B061200", + "code": "B061200", + "externalsDescription": "", + "description": "de-description-B061200", "sectorsInfo": [ { "id": "m6wRIr4gijM", - "series": "600" + "series": "612" } ], "mainSector": { "id": "m6wRIr4gijM" }, - "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "Kk4miRS84h8", + "code": "P061300", + "name": "pde-P061300" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "ya21TqO05jE", - "name": "de-B060201", - "code": "B060201", - "description": "de-description-B060201", + "id": "uYG4SKGuqrV", + "name": "de-P060609", + "code": "P060609", + "externalsDescription": "", + "description": "de-description-P060609", "sectorsInfo": [ { "id": "m6wRIr4gijM", - "series": "602" + "series": "606" } ], "mainSector": { "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qycHkj19wHq", - "name": "de-B060310", - "code": "B060310", - "description": "de-description-B060310", + "id": "qSkP0W5i6ds", + "name": "de-P060604", + "code": "P060604", + "externalsDescription": "", + "description": "de-description-P060604", "sectorsInfo": [ { "id": "m6wRIr4gijM", - "series": "603" + "series": "606" } ], "mainSector": { "id": "m6wRIr4gijM" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "WIg3SRULDvK", - "code": "P060510", - "name": "pde-P060510" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "e2GAXXJtms9", - "name": "de-P060506", - "code": "P060506", - "description": "de-description-P060506", + "id": "WgCIQKgJQeg", + "name": "de-P081401", + "code": "P081401", + "externalsDescription": "", + "description": "de-description-P081401", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "O2wdK9G0m9f", + "series": "814" + }, + { + "id": "i8qug2Himby", + "series": "703" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -4953,215 +8510,239 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WYovLaeWDag", - "name": "de-B061000", - "code": "B061000", - "description": "de-description-B061000", + "id": "qY6VZUiUqP5", + "name": "de-B070300", + "code": "B070300", + "externalsDescription": "", + "description": "de-description-B070300", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "610" + "id": "O2wdK9G0m9f", + "series": "800" + }, + { + "id": "i8qug2Himby", + "series": "703" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "i8qug2Himby" }, "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "eoEtWMiPJ54", - "code": "P061100", - "name": "pde-P061100" + "id": "mm8STQA7P0V", + "code": "P070400", + "name": "pde-P070400" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "SKkfrCzpoxa", - "name": "de-B060301", - "code": "B060301", - "description": "de-description-B060301", + "id": "aYk5MgSCLXP", + "name": "de-B081200", + "code": "B081200", + "externalsDescription": "", + "description": "de-description-B081200", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "603" + "id": "O2wdK9G0m9f", + "series": "812" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "uYeoyAKEzbr", - "code": "P060501", - "name": "pde-P060501" + "id": "KKmUWsn19fq", + "code": "P081300", + "name": "pde-P081300" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WySskSIZwaM", - "name": "de-B060307", - "code": "B060307", - "description": "de-description-B060307", + "id": "uyErryPGFZs", + "name": "de-P080001", + "code": "P080001", + "externalsDescription": "", + "description": "de-description-P080001", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "603" + "id": "O2wdK9G0m9f", + "series": "800" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "e6E27ya1qf6", - "code": "P060507", - "name": "pde-P060507" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "G00cLpvqpvV", - "name": "de-B060202", - "code": "B060202", - "description": "de-description-B060202", + "id": "KWmKf2Tlg6p", + "name": "de-P080901", + "code": "P080901", + "externalsDescription": "", + "description": "de-description-P080901", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "602" + "id": "O2wdK9G0m9f", + "series": "809" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "i0WWUhzisEK", - "name": "de-B060204", - "code": "B060204", - "description": "de-description-B060204", + "id": "ayKUg0jcQIs", + "name": "de-P081400", + "code": "P081400", + "externalsDescription": "", + "description": "de-description-P081400", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "602" + "id": "O2wdK9G0m9f", + "series": "814" + }, + { + "id": "i8qug2Himby", + "series": "703" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "indicatorType": "global", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "iSUjjR1nolD", - "name": "de-B061001", - "code": "B061001", - "description": "de-description-B061001", + "id": "GSMf5gMHwgd", + "name": "de-B080500", + "code": "B080500", + "externalsDescription": "", + "description": "de-description-B080500", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "610" + "id": "O2wdK9G0m9f", + "series": "805" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "yeeMeFfZUfi", - "code": "P061101", - "name": "pde-P061101" + "id": "mgSMcRjQY7P", + "code": "P080600", + "name": "pde-P080600" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WIg3SRULDvK", - "name": "de-P060510", - "code": "P060510", - "description": "de-description-P060510", + "id": "OKgFYITeL5k", + "name": "de-B080101", + "code": "B080101", + "externalsDescription": "", + "description": "de-description-B080101", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "O2wdK9G0m9f", + "series": "801" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "OmObSzjMNJe", + "code": "P080201", + "name": "pde-P080201" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "yeeMeFfZUfi", - "name": "de-P061101", - "code": "P061101", - "description": "de-description-P061101", + "id": "OOCOr95zk1q", + "name": "de-P081305", + "code": "P081305", + "externalsDescription": "", + "description": "de-description-P081305", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "611" + "id": "O2wdK9G0m9f", + "series": "813" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -5169,71 +8750,87 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WSYRjif67DQ", - "name": "de-P060101", - "code": "P060101", - "description": "de-description-P060101", + "id": "qSmIqw8878y", + "name": "de-B030801", + "code": "B030801", + "externalsDescription": "", + "description": "de-description-B030801", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "601" + "id": "O2wdK9G0m9f", + "series": "800" + }, + { + "id": "Oq4A79YZZ8E", + "series": "308" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "qYMiVPnxFpT", + "code": "P030901", + "name": "pde-P030901" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "yiAZ2tvWOGK", - "name": "de-P060511", - "code": "P060511", - "description": "de-description-P060511", + "id": "S6oNywvqVL9", + "name": "de-P080900", + "code": "P080900", + "externalsDescription": "OFDA: Number of HHs having received shelter assistance", + "description": "de-description-P080900", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "O2wdK9G0m9f", + "series": "809" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", - "externals": [], + "externals": ["OFDA"], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KQS9tdttTyi", - "name": "de-P060512", - "code": "P060512", - "description": "de-description-P060512", + "id": "uQeZCfhxIAZ", + "name": "de-P081302", + "code": "P081302", + "externalsDescription": "", + "description": "de-description-P081302", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "O2wdK9G0m9f", + "series": "813" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -5241,47 +8838,55 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qoyUvAUcCDE", - "name": "de-P060805", - "code": "P060805", - "description": "de-description-P060805", + "id": "a08FKV0iidX", + "name": "de-B030003", + "code": "B030003", + "externalsDescription": "", + "description": "de-description-B030003", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "800" + }, + { + "id": "Oq4A79YZZ8E", + "series": "300" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "SsghcMY2FnR", - "name": "de-P060809", - "code": "P060809", - "description": "de-description-P060809", + "id": "OmObSzjMNJe", + "name": "de-P080201", + "code": "P080201", + "externalsDescription": "", + "description": "de-description-P080201", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "802" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -5289,53 +8894,57 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CSwvrBGE0mJ", - "name": "de-B060900", - "code": "B060900", - "description": "de-description-B060900", + "id": "KWYbEKBzT3X", + "name": "de-B080300", + "code": "B080300", + "externalsDescription": "", + "description": "de-description-B080300", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "609" + "id": "O2wdK9G0m9f", + "series": "803" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "eoEtWMiPJ54", - "code": "P061100", - "name": "pde-P061100" + "id": "OwUrgV6dRRD", + "code": "P080400", + "name": "pde-P080400" } ], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "CAYv5AjgIl2", - "name": "de-P060810", - "code": "P060810", - "description": "de-description-P060810", + "id": "yeq0Rgwyk3v", + "name": "de-P081403", + "code": "P081403", + "externalsDescription": "", + "description": "de-description-P081403", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "814" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -5343,195 +8952,205 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qesC4uvl9Ah", - "name": "de-B060309", - "code": "B060309", - "description": "de-description-B060309", + "id": "OYiIfLFNIBU", + "name": "de-B080100", + "code": "B080100", + "externalsDescription": "", + "description": "de-description-B080100", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "603" + "id": "O2wdK9G0m9f", + "series": "801" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "ugq2qktXHs0", - "code": "P060509", - "name": "pde-P060509" + "id": "KAqED5puVJR", + "code": "P080200", + "name": "pde-P080200" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "ywrzZ4voCri", - "name": "de-B060400", - "code": "B060400", - "description": "de-description-B060400", + "id": "Gg4qCBvZ99L", + "name": "de-P081304", + "code": "P081304", + "externalsDescription": "", + "description": "de-description-P081304", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "604" + "id": "O2wdK9G0m9f", + "series": "813" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "GMGkGPLnIlt", - "code": "P060500", - "name": "pde-P060500" - } - ], + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KEOuGGbp5K5", - "name": "de-P060804", - "code": "P060804", - "description": "de-description-P060804", + "id": "G6CCgEB6NLt", + "name": "de-B080103", + "code": "B080103", + "externalsDescription": "", + "description": "de-description-B080103", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "801" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "qCc9Mog86QE", + "code": "P080203", + "name": "pde-P080203" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "Wq0MmYQKeZu", - "name": "de-B061002", - "code": "B061002", - "description": "de-description-B061002", + "id": "qsyWwrmt33M", + "name": "de-P080202", + "code": "P080202", + "externalsDescription": "", + "description": "de-description-P080202", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "610" + "id": "O2wdK9G0m9f", + "series": "802" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "W0SCUw6KViC", - "code": "P061102", - "name": "pde-P061102" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GqoFCvfjwIi", - "name": "de-B060304", - "code": "B060304", - "description": "de-description-B060304", + "id": "imuTP7oBnOF", + "name": "de-B081202", + "code": "B081202", + "externalsDescription": "", + "description": "de-description-B081202", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "603" + "id": "O2wdK9G0m9f", + "series": "812" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "mW2Hv8VIr3O", - "code": "P060504", - "name": "pde-P060504" + "id": "uQeZCfhxIAZ", + "code": "P081302", + "name": "pde-P081302" } ], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "CGkvuMeGPGu", - "name": "de-P030606", - "code": "P030606", - "description": "de-description-P030606", + "id": "W4sDeNJ86rf", + "name": "de-B080700", + "code": "B080700", + "externalsDescription": "", + "description": "de-description-B080700", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "600" - }, - { - "id": "Oq4A79YZZ8E", - "series": "306" + "id": "O2wdK9G0m9f", + "series": "807" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "eCiNhTEEwP2", + "code": "P080800", + "name": "pde-P080800" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "Cy6LP31Z6xH", - "name": "de-P060105", - "code": "P060105", - "description": "de-description-P060105", + "id": "qCc9Mog86QE", + "name": "de-P080203", + "code": "P080203", + "externalsDescription": "", + "description": "de-description-P080203", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "601" + "id": "O2wdK9G0m9f", + "series": "802" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -5539,107 +9158,117 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "e2I1nMkhhvx", - "name": "de-P060813", - "code": "P060813", - "description": "de-description-P060813", + "id": "eCiNhTEEwP2", + "name": "de-P080800", + "code": "P080800", + "externalsDescription": "", + "description": "de-description-P080800", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "808" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CagfF9DPOuL", - "name": "de-B060300", - "code": "B060300", - "description": "de-description-B060300", + "id": "mgSMcRjQY7P", + "name": "de-P080600", + "code": "P080600", + "externalsDescription": "", + "description": "de-description-P080600", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "603" + "id": "O2wdK9G0m9f", + "series": "806" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "GMGkGPLnIlt", - "code": "P060500", - "name": "pde-P060500" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "u80a11AljkK", - "name": "de-B060401", - "code": "B060401", - "description": "de-description-B060401", + "id": "miYneg7nVZR", + "name": "de-B030001", + "code": "B030001", + "externalsDescription": "", + "description": "de-description-B030001", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "604" + "id": "O2wdK9G0m9f", + "series": "800" + }, + { + "id": "Oq4A79YZZ8E", + "series": "300" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "yiAZ2tvWOGK", - "code": "P060511", - "name": "pde-P060511" + "id": "awgF2cmvQrn", + "code": "P030002", + "name": "pde-P030002" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "awWOon4mbRk", - "name": "de-P060812", - "code": "P060812", - "description": "de-description-P060812", + "id": "qYMiVPnxFpT", + "name": "de-P030901", + "code": "P030901", + "externalsDescription": "", + "description": "de-description-P030901", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "800" + }, + { + "id": "Oq4A79YZZ8E", + "series": "309" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -5647,275 +9276,313 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yCE8yRRSLao", - "name": "de-P060103", - "code": "P060103", - "description": "de-description-P060103", + "id": "mm8STQA7P0V", + "name": "de-P070400", + "code": "P070400", + "externalsDescription": "", + "description": "de-description-P070400", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "601" + "id": "O2wdK9G0m9f", + "series": "800" + }, + { + "id": "i8qug2Himby", + "series": "704" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "i8qug2Himby" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "OKAHBIGz0Ki", - "name": "de-P060104", - "code": "P060104", - "description": "de-description-P060104", + "id": "KKmUWsn19fq", + "name": "de-P081300", + "code": "P081300", + "externalsDescription": "", + "description": "de-description-P081300", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "601" + "id": "O2wdK9G0m9f", + "series": "813" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qGKssff9JwK", - "name": "de-B060306", - "code": "B060306", - "description": "de-description-B060306", + "id": "muknsuxQ5ch", + "name": "de-B081201", + "code": "B081201", + "externalsDescription": "", + "description": "de-description-B081201", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "603" + "id": "O2wdK9G0m9f", + "series": "812" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "e2GAXXJtms9", - "code": "P060506", - "name": "pde-P060506" + "id": "eSqIjaS1r2w", + "code": "P081301", + "name": "pde-P081301" } ], "countingMethod": "", - "externals": ["ODFA"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "mqkX2ladoVS", - "name": "de-P060807", - "code": "P060807", - "description": "de-description-P060807", + "id": "CQK2WzuEktG", + "name": "de-B080102", + "code": "B080102", + "externalsDescription": "", + "description": "de-description-B080102", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "801" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "qsyWwrmt33M", + "code": "P080202", + "name": "pde-P080202" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "S2ua4bjQVBz", - "name": "de-B060308", - "code": "B060308", - "description": "de-description-B060308", + "id": "CE9te39HtIt", + "name": "de-B081203", + "code": "B081203", + "externalsDescription": "", + "description": "de-description-B081203", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "603" + "id": "O2wdK9G0m9f", + "series": "812" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "yawJAl2c1jJ", - "code": "P060508", - "name": "pde-P060508" + "id": "iAQ5SzrWRoj", + "code": "P081303", + "name": "pde-P081303" } ], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "CMQ1YXVibYU", - "name": "de-P060700", - "code": "P060700", - "description": "de-description-P060700", + "id": "Okq8Qfhx8Yn", + "name": "de-P081402", + "code": "P081402", + "externalsDescription": "", + "description": "de-description-P081402", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "607" + "id": "O2wdK9G0m9f", + "series": "814" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yeKVjpXOjQI", - "name": "de-P060802", - "code": "P060802", - "description": "de-description-P060802", + "id": "OI2puJwy7Q6", + "name": "de-P081100", + "code": "P081100", + "externalsDescription": "OFDA: Number of HHs having received shelter assistance", + "description": "de-description-P081100", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "811" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", - "externals": [], + "externals": ["OFDA"], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KYiLxwJhtm2", - "name": "de-P060102", - "code": "P060102", - "description": "de-description-P060102", + "id": "OwUrgV6dRRD", + "name": "de-P080400", + "code": "P080400", + "externalsDescription": "", + "description": "de-description-P080400", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "601" + "id": "O2wdK9G0m9f", + "series": "804" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qOC40vYf13d", - "name": "de-P060502", - "code": "P060502", - "description": "de-description-P060502", + "id": "m6QynUevAqo", + "name": "de-B081205", + "code": "B081205", + "externalsDescription": "", + "description": "de-description-B081205", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "O2wdK9G0m9f", + "series": "812" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "OOCOr95zk1q", + "code": "P081305", + "name": "pde-P081305" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "uEGeiH8uCr8", - "name": "de-P060806", - "code": "P060806", - "description": "de-description-P060806", + "id": "KAqED5puVJR", + "name": "de-P080200", + "code": "P080200", + "externalsDescription": "", + "description": "de-description-P080200", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "802" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "O8uEwgIqfMA", - "name": "de-P060801", - "code": "P060801", - "description": "de-description-P060801", + "id": "eSqIjaS1r2w", + "name": "de-P081301", + "code": "P081301", + "externalsDescription": "", + "description": "de-description-P081301", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "813" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -5923,23 +9590,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uYeoyAKEzbr", - "name": "de-P060501", - "code": "P060501", - "description": "de-description-P060501", + "id": "iAQ5SzrWRoj", + "name": "de-P081303", + "code": "P081303", + "externalsDescription": "", + "description": "de-description-P081303", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "O2wdK9G0m9f", + "series": "813" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -5947,119 +9616,151 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "a6SyfkuUcqv", - "name": "de-P060800", - "code": "P060800", - "description": "de-description-P060800", + "id": "awgF2cmvQrn", + "name": "de-P030002", + "code": "P030002", + "externalsDescription": "", + "description": "de-description-P030002", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "O2wdK9G0m9f", + "series": "800" + }, + { + "id": "Oq4A79YZZ8E", + "series": "300" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WUItTX5YzPL", - "name": "de-P060100", - "code": "P060100", - "description": "de-description-P060100", + "id": "SImQCbjEbXz", + "name": "de-B081204", + "code": "B081204", + "externalsDescription": "", + "description": "de-description-B081204", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "601" + "id": "O2wdK9G0m9f", + "series": "812" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, - "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "Gg4qCBvZ99L", + "code": "P081304", + "name": "pde-P081304" + } + ], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "eoEtWMiPJ54", - "name": "de-P061100", - "code": "P061100", - "description": "de-description-P061100", + "id": "WwuQyH1Y38R", + "name": "de-B081000", + "code": "B081000", + "externalsDescription": "", + "description": "de-description-B081000", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "611" + "id": "O2wdK9G0m9f", + "series": "810" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "O2wdK9G0m9f" }, "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "OI2puJwy7Q6", + "code": "P081100", + "name": "pde-P081100" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "mW2Hv8VIr3O", - "name": "de-P060504", - "code": "P060504", - "description": "de-description-P060504", + "id": "mkOo1Ano2Te", + "name": "de-B030103", + "code": "B030103", + "externalsDescription": "", + "description": "de-description-B030103", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "Oq4A79YZZ8E", + "series": "301" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "mSGEH8Rhe8n", + "code": "P030203", + "name": "pde-P030203" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "GQWvqy78j1p", - "name": "de-P060803", - "code": "P060803", - "description": "de-description-P060803", + "id": "OYkHOXijR2y", + "name": "de-P030602", + "code": "P030602", + "externalsDescription": "", + "description": "de-description-P030602", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "Oq4A79YZZ8E", + "series": "306" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6067,23 +9768,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GyoNI1DRlAl", - "name": "de-P060503", - "code": "P060503", - "description": "de-description-P060503", + "id": "qkamQF5GoMT", + "name": "de-P030705", + "code": "P030705", + "externalsDescription": "", + "description": "de-description-P030705", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "Oq4A79YZZ8E", + "series": "307" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6091,75 +9794,89 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "e6E27ya1qf6", - "name": "de-P060507", - "code": "P060507", - "description": "de-description-P060507", + "id": "qow7I4mkB1o", + "name": "de-B030111", + "code": "B030111", + "externalsDescription": "", + "description": "de-description-B030111", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "Oq4A79YZZ8E", + "series": "301" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "qwAVBohAV86", + "code": "P030211", + "name": "pde-P030211" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "iiEThnJ5xEb", - "name": "de-P081200", - "code": "P081200", - "description": "de-description-P081200", + "id": "Ws48eBlsPVy", + "name": "de-B030304", + "code": "B030304", + "externalsDescription": "", + "description": "de-description-B030304", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "600" - }, - { - "id": "O2wdK9G0m9f", - "series": "810" + "id": "Oq4A79YZZ8E", + "series": "303" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "SuayUhAd7I9", + "code": "P030404", + "name": "pde-P030404" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "KYkxZLiSAhg", - "name": "de-P060814", - "code": "P060814", - "description": "de-description-P060814", + "id": "meUNtJr7X5M", + "name": "de-P030702", + "code": "P030702", + "externalsDescription": "", + "description": "de-description-P030702", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "608" + "id": "Oq4A79YZZ8E", + "series": "307" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6167,23 +9884,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yawJAl2c1jJ", - "name": "de-P060508", - "code": "P060508", - "description": "de-description-P060508", + "id": "SuayUhAd7I9", + "name": "de-P030404", + "code": "P030404", + "externalsDescription": "", + "description": "de-description-P030404", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "Oq4A79YZZ8E", + "series": "304" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6191,107 +9910,105 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "iw2nTn0oV5o", - "name": "de-B060302", - "code": "B060302", - "description": "de-description-B060302", + "id": "qqwz7NP5dxE", + "name": "de-B030500", + "code": "B030500", + "externalsDescription": "", + "description": "de-description-B030500", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "603" + "id": "Oq4A79YZZ8E", + "series": "305" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "qOC40vYf13d", - "code": "P060502", - "name": "pde-P060502" + "id": "qm6HENhtZpz", + "code": "P030600", + "name": "pde-P030600" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "y4ApFxWXBfl", - "name": "de-B060303", - "code": "B060303", - "description": "de-description-B060303", + "id": "Ceig7nKSOzc", + "name": "de-P030904", + "code": "P030904", + "externalsDescription": "", + "description": "de-description-P030904", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "603" + "id": "Oq4A79YZZ8E", + "series": "309" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "GyoNI1DRlAl", - "code": "P060503", - "name": "pde-P060503" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yGIr6ZotIs8", - "name": "de-B060203", - "code": "B060203", - "description": "de-description-B060203", + "id": "CYKAO7WoHnO", + "name": "de-P030210", + "code": "P030210", + "externalsDescription": "", + "description": "de-description-P030210", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "602" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "SMEnhI6A9Rs", - "name": "de-B030703", - "code": "B030703", - "description": "de-description-B030703", + "id": "CKXTn3kNz5J", + "name": "de-B030110", + "code": "B030110", + "externalsDescription": "", + "description": "de-description-B030110", "sectorsInfo": [ - { - "id": "m6wRIr4gijM", - "series": "600" - }, { "id": "Oq4A79YZZ8E", - "series": "307" + "series": "301" } ], "mainSector": { @@ -6301,143 +10018,143 @@ "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "aWeogk5FTW7", - "code": "P030803", - "name": "pde-P030803" + "id": "CYKAO7WoHnO", + "code": "P030210", + "name": "pde-P030210" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "Wq4390xucCa", - "name": "de-B081101", - "code": "B081101", - "description": "de-description-B081101", + "id": "eEMZWaRwRoH", + "name": "de-P030202", + "code": "P030202", + "externalsDescription": "", + "description": "de-description-P030202", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "600" - }, - { - "id": "O2wdK9G0m9f", - "series": "810" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "a4WECraqDwz", - "code": "P081201", - "name": "pde-P081201" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "aSk1I6wJ9AY", - "name": "de-B060600", - "code": "B060600", - "description": "de-description-B060600", + "id": "S4cFVOMqzOC", + "name": "de-B030108", + "code": "B030108", + "externalsDescription": "", + "description": "de-description-B030108", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "606" + "id": "Oq4A79YZZ8E", + "series": "301" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "CMQ1YXVibYU", - "code": "P060700", - "name": "pde-P060700" + "id": "mi4SAwJqLtI", + "code": "P030208", + "name": "pde-P030208" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "W0SCUw6KViC", - "name": "de-P061102", - "code": "P061102", - "description": "de-description-P061102", + "id": "qm6HENhtZpz", + "name": "de-P030600", + "code": "P030600", + "externalsDescription": "", + "description": "de-description-P030600", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "611" + "id": "Oq4A79YZZ8E", + "series": "306" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GMGkGPLnIlt", - "name": "de-P060500", - "code": "P060500", - "description": "de-description-P060500", + "id": "mSGEH8Rhe8n", + "name": "de-P030203", + "code": "P030203", + "externalsDescription": "", + "description": "de-description-P030203", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "ugq2qktXHs0", - "name": "de-P060509", - "code": "P060509", - "description": "de-description-P060509", + "id": "mmU1VP94a5A", + "name": "de-P030401", + "code": "P030401", + "externalsDescription": "", + "description": "de-description-P030401", "sectorsInfo": [ { - "id": "m6wRIr4gijM", - "series": "605" + "id": "Oq4A79YZZ8E", + "series": "304" } ], "mainSector": { - "id": "m6wRIr4gijM" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6445,131 +10162,141 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "SKi4fRAdhk7", - "name": "de-P080902", - "code": "P080902", - "description": "de-description-P080902", + "id": "e8PLRnSt0Od", + "name": "de-B030102", + "code": "B030102", + "externalsDescription": "", + "description": "de-description-B030102", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "809" + "id": "Oq4A79YZZ8E", + "series": "301" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "eEMZWaRwRoH", + "code": "P030202", + "name": "pde-P030202" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "SYVRocVMMpi", - "name": "de-P080501", - "code": "P080501", - "description": "de-description-P080501", + "id": "ieMPt2lJ3lp", + "name": "de-B030100", + "code": "B030100", + "externalsDescription": "", + "description": "de-description-B030100", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "805" + "id": "Oq4A79YZZ8E", + "series": "301" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "SWSQWI5qOtS", + "code": "P030200", + "name": "pde-P030200" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "OKgFYITeL5k", - "name": "de-B080101", - "code": "B080101", - "description": "de-description-B080101", + "id": "GeIvUs41E1U", + "name": "de-P030201", + "code": "P030201", + "externalsDescription": "", + "description": "de-description-P030201", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "801" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "SYVRocVMMpi", - "code": "P080501", - "name": "pde-P080501" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "mWu8f1Vxk1k", - "name": "de-B080600", - "code": "B080600", - "description": "de-description-B080600", + "id": "uyMhgwLwrzi", + "name": "de-B030005", + "code": "B030005", + "externalsDescription": "", + "description": "de-description-B030005", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "806" + "id": "Oq4A79YZZ8E", + "series": "300" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "SGmWjKYWZrQ", - "code": "P080700", - "name": "pde-P080700" - } - ], + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "mcPWIzctkij", - "name": "de-P080503", - "code": "P080503", - "description": "de-description-P080503", + "id": "SiCifbteVub", + "name": "de-P030205", + "code": "P030205", + "externalsDescription": "", + "description": "de-description-P030205", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "805" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6577,23 +10304,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Gy4R57uxJGf", - "name": "de-P080505", - "code": "P080505", - "description": "de-description-P080505", + "id": "K4AHO1xVumZ", + "name": "de-P030703", + "code": "P030703", + "externalsDescription": "", + "description": "de-description-P030703", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "805" + "id": "Oq4A79YZZ8E", + "series": "307" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6601,107 +10330,109 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uGygVN0ES1o", - "name": "de-B080802", - "code": "B080802", - "description": "de-description-B080802", + "id": "OKoN6R2HmWQ", + "name": "de-P030701", + "code": "P030701", + "externalsDescription": "", + "description": "de-description-P030701", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "808" - } - ], - "mainSector": { - "id": "O2wdK9G0m9f" - }, - "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "SKi4fRAdhk7", - "code": "P080902", - "name": "pde-P080902" + "id": "Oq4A79YZZ8E", + "series": "307" } ], + "mainSector": { + "id": "Oq4A79YZZ8E" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WswpOsajwWK", - "name": "de-B080400", - "code": "B080400", - "description": "de-description-B080400", + "id": "G8CuZodHu5I", + "name": "de-P030402", + "code": "P030402", + "externalsDescription": "", + "description": "de-description-P030402", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "804" + "id": "Oq4A79YZZ8E", + "series": "304" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "W62kB6unowM", - "code": "P080506", - "name": "pde-P080506" - } - ], + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "S6oNywvqVL9", - "name": "de-P080900", - "code": "P080900", - "description": "de-description-P080900", + "id": "e6grCpK5iSl", + "name": "de-B030300", + "code": "B030300", + "externalsDescription": "", + "description": "de-description-B030300", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "809" + "id": "Oq4A79YZZ8E", + "series": "303" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "aYqgDFCymFU", + "code": "P030400", + "name": "pde-P030400" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "C0OISdeJaeD", - "name": "de-P080903", - "code": "P080903", - "description": "de-description-P080903", + "id": "Ce4u0MTUype", + "name": "de-P030204", + "code": "P030204", + "externalsDescription": "", + "description": "de-description-P030204", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "809" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6709,23 +10440,21 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "miYneg7nVZR", - "name": "de-B030001", - "code": "B030001", - "description": "de-description-B030001", + "id": "C6Ip0lKUOBv", + "name": "de-B030804", + "code": "B030804", + "externalsDescription": "", + "description": "de-description-B030804", "sectorsInfo": [ - { - "id": "O2wdK9G0m9f", - "series": "800" - }, { "id": "Oq4A79YZZ8E", - "series": "300" + "series": "308" } ], "mainSector": { @@ -6735,91 +10464,91 @@ "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "CkgxCiq5G8x", - "code": "P030300", - "name": "pde-P030300" + "id": "Ceig7nKSOzc", + "code": "P030904", + "name": "pde-P030904" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "G6CCgEB6NLt", - "name": "de-B080103", - "code": "B080103", - "description": "de-description-B080103", + "id": "OoGKOEoiEmz", + "name": "de-P030704", + "code": "P030704", + "externalsDescription": "", + "description": "de-description-P030704", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "801" + "id": "Oq4A79YZZ8E", + "series": "307" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "mcPWIzctkij", - "code": "P080503", - "name": "pde-P080503" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "msKkuVQZoOF", - "name": "de-B080804", - "code": "B080804", - "description": "de-description-B080804", + "id": "CawFe7jffkH", + "name": "de-B030303", + "code": "B030303", + "externalsDescription": "", + "description": "de-description-B030303", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "808" + "id": "Oq4A79YZZ8E", + "series": "303" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "eiy8sOqlvgo", - "code": "P080904", - "name": "pde-P080904" + "id": "iQwzTcZ6Ans", + "code": "P030403", + "name": "pde-P030403" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "G6k7yhUhrUU", - "name": "de-P081002", - "code": "P081002", - "description": "de-description-P081002", + "id": "SSyEvIP1RXh", + "name": "de-P030207", + "code": "P030207", + "externalsDescription": "", + "description": "de-description-P030207", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "810" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6827,135 +10556,147 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GE1BUNc7GTl", - "name": "de-P080500", - "code": "P080500", - "description": "de-description-P080500", + "id": "ScKnYQEkQdl", + "name": "de-B030302", + "code": "B030302", + "externalsDescription": "", + "description": "de-description-B030302", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "805" + "id": "Oq4A79YZZ8E", + "series": "303" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "G8CuZodHu5I", + "code": "P030402", + "name": "pde-P030402" + } + ], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "iQoZVOV9ytH", - "name": "de-P080502", - "code": "P080502", - "description": "de-description-P080502", + "id": "uMeWCCYnx6y", + "name": "de-B030106", + "code": "B030106", + "externalsDescription": "", + "description": "de-description-B030106", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "805" + "id": "Oq4A79YZZ8E", + "series": "301" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "mM6TxfM7fqL", + "code": "P030206", + "name": "pde-P030206" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "OMJCwbXM9eg", - "name": "de-B080200", - "code": "B080200", - "description": "de-description-B080200", + "id": "iQwzTcZ6Ans", + "name": "de-P030403", + "code": "P030403", + "externalsDescription": "", + "description": "de-description-P030403", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "802" + "id": "Oq4A79YZZ8E", + "series": "304" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "igS2SkaUoc7", - "code": "P080504", - "name": "pde-P080504" - } - ], + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "G8cb0kMg4Z0", - "name": "de-B080800", - "code": "B080800", - "description": "de-description-B080800", + "id": "isu2SvonHfg", + "name": "de-B030009", + "code": "B030009", + "externalsDescription": "", + "description": "de-description-B030009", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "808" + "id": "Oq4A79YZZ8E", + "series": "300" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "S6oNywvqVL9", - "code": "P080900", - "name": "pde-P080900" + "id": "qgqARJdCR8V", + "code": "P030010", + "name": "pde-P030010" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "uASwJcZwhJR", - "name": "de-P081001", - "code": "P081001", - "description": "de-description-P081001", + "id": "mCWsf6SE2LU", + "name": "de-P030209", + "code": "P030209", + "externalsDescription": "", + "description": "de-description-P030209", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "810" - }, - { - "id": "i8qug2Himby", - "series": "703" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6963,23 +10704,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "eOsnXFHy2vn", - "name": "de-P080905", - "code": "P080905", - "description": "de-description-P080905", + "id": "WSgnt7psGh6", + "name": "de-P030601", + "code": "P030601", + "externalsDescription": "", + "description": "de-description-P030601", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "809" + "id": "Oq4A79YZZ8E", + "series": "306" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -6987,23 +10730,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "a4WECraqDwz", - "name": "de-P081201", - "code": "P081201", - "description": "de-description-P081201", + "id": "mcID0DnsifO", + "name": "de-P030902", + "code": "P030902", + "externalsDescription": "", + "description": "de-description-P030902", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "812" + "id": "Oq4A79YZZ8E", + "series": "309" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -7011,383 +10756,399 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KWmKf2Tlg6p", - "name": "de-P080901", - "code": "P080901", - "description": "de-description-P080901", + "id": "SWSQWI5qOtS", + "name": "de-P030200", + "code": "P030200", + "externalsDescription": "", + "description": "de-description-P030200", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "809" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "eWMRYu8Dn8s", - "name": "de-B030002", - "code": "B030002", - "description": "de-description-B030002", + "id": "mi4SAwJqLtI", + "name": "de-P030208", + "code": "P030208", + "externalsDescription": "", + "description": "de-description-P030208", "sectorsInfo": [ - { - "id": "O2wdK9G0m9f", - "series": "800" - }, { "id": "Oq4A79YZZ8E", - "series": "300" + "series": "302" } ], "mainSector": { "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "OYiIfLFNIBU", - "name": "de-B080100", - "code": "B080100", - "description": "de-description-B080100", + "id": "qwAVBohAV86", + "name": "de-P030211", + "code": "P030211", + "externalsDescription": "", + "description": "de-description-P030211", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "801" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "GE1BUNc7GTl", - "code": "P080500", - "name": "pde-P080500" - } - ], + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CQK2WzuEktG", - "name": "de-B080102", - "code": "B080102", - "description": "de-description-B080102", + "id": "aGqgx6eCXIP", + "name": "de-B030004", + "code": "B030004", + "externalsDescription": "", + "description": "de-description-B030004", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "801" + "id": "Oq4A79YZZ8E", + "series": "300" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "iQoZVOV9ytH", - "code": "P080502", - "name": "pde-P080502" - } - ], + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "W62kB6unowM", - "name": "de-P080506", - "code": "P080506", - "description": "de-description-P080506", + "id": "W8shJ2IPnKl", + "name": "de-B030105", + "code": "B030105", + "externalsDescription": "", + "description": "de-description-B030105", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "805" + "id": "Oq4A79YZZ8E", + "series": "301" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "SiCifbteVub", + "code": "P030205", + "name": "pde-P030205" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "qY6VZUiUqP5", - "name": "de-B070300", - "code": "B070300", - "description": "de-description-B070300", + "id": "CC6Iy1wakVf", + "name": "de-B030109", + "code": "B030109", + "externalsDescription": "", + "description": "de-description-B030109", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "800" - }, - { - "id": "i8qug2Himby", - "series": "703" + "id": "Oq4A79YZZ8E", + "series": "301" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "mm8STQA7P0V", - "code": "P070400", - "name": "pde-P070400" + "id": "mCWsf6SE2LU", + "code": "P030209", + "name": "pde-P030209" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "Wkyu5QgGFhN", - "name": "de-P080507", - "code": "P080507", - "description": "de-description-P080507", + "id": "acwDBR7ggHo", + "name": "de-B030006", + "code": "B030006", + "externalsDescription": "", + "description": "de-description-B030006", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "805" + "id": "Oq4A79YZZ8E", + "series": "300" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "uooLz69cpuC", - "name": "de-B080805", - "code": "B080805", - "description": "de-description-B080805", + "id": "egQPupxcfGR", + "name": "de-B030104", + "code": "B030104", + "externalsDescription": "", + "description": "de-description-B030104", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "808" + "id": "Oq4A79YZZ8E", + "series": "301" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "eOsnXFHy2vn", - "code": "P080905", - "name": "pde-P080905" + "id": "Ce4u0MTUype", + "code": "P030204", + "name": "pde-P030204" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "OYslNIHtlHg", - "name": "de-P081003", - "code": "P081003", - "description": "de-description-P081003", + "id": "GUmq3HZIVD5", + "name": "de-B030502", + "code": "B030502", + "externalsDescription": "", + "description": "de-description-B030502", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "810" + "id": "Oq4A79YZZ8E", + "series": "305" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "OYkHOXijR2y", + "code": "P030602", + "name": "pde-P030602" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "a8Y3J0Dl63j", - "name": "de-B081100", - "code": "B081100", - "description": "de-description-B081100", + "id": "aYqgDFCymFU", + "name": "de-P030400", + "code": "P030400", + "externalsDescription": "", + "description": "de-description-P030400", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "811" + "id": "Oq4A79YZZ8E", + "series": "304" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "iiEThnJ5xEb", - "code": "P081200", - "name": "pde-P081200" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "SGmWjKYWZrQ", - "name": "de-P080700", - "code": "P080700", - "description": "de-description-P080700", + "id": "qMbhETg3rBr", + "name": "de-P030700", + "code": "P030700", + "externalsDescription": "", + "description": "de-description-P030700", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "807" + "id": "Oq4A79YZZ8E", + "series": "307" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CEA1CMayvfm", - "name": "de-P081000", - "code": "P081000", - "description": "de-description-P081000", + "id": "m02VdFteqEH", + "name": "de-B030802", + "code": "B030802", + "externalsDescription": "", + "description": "de-description-B030802", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "810" - }, - { - "id": "i8qug2Himby", - "series": "703" + "id": "Oq4A79YZZ8E", + "series": "308" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, - "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "mcID0DnsifO", + "code": "P030902", + "name": "pde-P030902" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "GcQ3L0BcNd2", - "name": "de-B080801", - "code": "B080801", - "description": "de-description-B080801", + "id": "ecQncxEhoEE", + "name": "de-B030101", + "code": "B030101", + "externalsDescription": "", + "description": "de-description-B030101", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "808" + "id": "Oq4A79YZZ8E", + "series": "301" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "KWmKf2Tlg6p", - "code": "P080901", - "name": "pde-P080901" + "id": "GeIvUs41E1U", + "code": "P030201", + "name": "pde-P030201" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "eiy8sOqlvgo", - "name": "de-P080904", - "code": "P080904", - "description": "de-description-P080904", + "id": "qgqARJdCR8V", + "name": "de-P030010", + "code": "P030010", + "externalsDescription": "", + "description": "de-description-P030010", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "809" + "id": "Oq4A79YZZ8E", + "series": "300" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -7395,83 +11156,115 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KWYbEKBzT3X", - "name": "de-B080300", - "code": "B080300", - "description": "de-description-B080300", + "id": "SUXD2Xh8jJn", + "name": "de-B030800", + "code": "B030800", + "externalsDescription": "", + "description": "de-description-B030800", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "803" + "id": "Oq4A79YZZ8E", + "series": "308" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "Gy4R57uxJGf", - "code": "P080505", - "name": "pde-P080505" + "id": "SecXGmgHADS", + "code": "P030900", + "name": "pde-P030900" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "eygHRgjorW0", - "name": "de-B080803", - "code": "B080803", - "description": "de-description-B080803", + "id": "mM6TxfM7fqL", + "name": "de-P030206", + "code": "P030206", + "externalsDescription": "", + "description": "de-description-P030206", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "808" + "id": "Oq4A79YZZ8E", + "series": "302" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "SM6Sz5h0fsL", + "name": "de-B030301", + "code": "B030301", + "externalsDescription": "", + "description": "de-description-B030301", + "sectorsInfo": [ + { + "id": "Oq4A79YZZ8E", + "series": "303" + } + ], + "mainSector": { + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "C0OISdeJaeD", - "code": "P080903", - "name": "pde-P080903" + "id": "mmU1VP94a5A", + "code": "P030401", + "name": "pde-P030401" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "igS2SkaUoc7", - "name": "de-P080504", - "code": "P080504", - "description": "de-description-P080504", + "id": "uE6ZPpbPz66", + "name": "de-P030008", + "code": "P030008", + "externalsDescription": "", + "description": "de-description-P030008", "sectorsInfo": [ { - "id": "O2wdK9G0m9f", - "series": "805" + "id": "Oq4A79YZZ8E", + "series": "300" } ], "mainSector": { - "id": "O2wdK9G0m9f" + "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -7479,43 +11272,47 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "OYkHOXijR2y", - "name": "de-P030602", - "code": "P030602", - "description": "de-description-P030602", + "id": "SecXGmgHADS", + "name": "de-P030900", + "code": "P030900", + "externalsDescription": "OFDA: Number of people receiving WASH NFIs assistance through all modalities (without double-counting)", + "description": "de-description-P030900", "sectorsInfo": [ { "id": "Oq4A79YZZ8E", - "series": "306" + "series": "309" } ], "mainSector": { "id": "Oq4A79YZZ8E" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", - "externals": [], + "externals": ["OFDA"], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yCQN7VsFUya", - "name": "de-B030107", - "code": "B030107", - "description": "de-description-B030107", + "id": "yukjouczkUZ", + "name": "de-B030007", + "code": "B030007", + "externalsDescription": "", + "description": "de-description-B030007", "sectorsInfo": [ { "id": "Oq4A79YZZ8E", - "series": "301" + "series": "300" } ], "mainSector": { @@ -7525,51 +11322,61 @@ "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "K6OYPzO1rVh", - "code": "P030307", - "name": "pde-P030307" + "id": "uE6ZPpbPz66", + "code": "P030008", + "name": "pde-P030008" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "i6gH2qYAkuy", - "name": "de-P030310", - "code": "P030310", - "description": "de-description-P030310", + "id": "WsNFyCinfhO", + "name": "de-B030501", + "code": "B030501", + "externalsDescription": "", + "description": "de-description-B030501", "sectorsInfo": [ { "id": "Oq4A79YZZ8E", - "series": "303" + "series": "305" } ], "mainSector": { "id": "Oq4A79YZZ8E" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "WSgnt7psGh6", + "code": "P030601", + "name": "pde-P030601" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "uyMhgwLwrzi", - "name": "de-B030005", - "code": "B030005", - "description": "de-description-B030005", + "id": "yCQN7VsFUya", + "name": "de-B030107", + "code": "B030107", + "externalsDescription": "", + "description": "de-description-B030107", "sectorsInfo": [ { "id": "Oq4A79YZZ8E", - "series": "300" + "series": "301" } ], "mainSector": { @@ -7577,111 +11384,145 @@ }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [], + "pairedDataElements": [ + { + "id": "SSyEvIP1RXh", + "code": "P030207", + "name": "pde-P030207" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "a0mutVmldRT", - "name": "de-B030701", - "code": "B030701", - "description": "de-description-B030701", + "id": "qk61QKV3q0q", + "name": "de-B039999", + "code": "B039999", + "externalsDescription": "", + "description": "de-description-B039999", "sectorsInfo": [ { "id": "Oq4A79YZZ8E", - "series": "307" + "series": "399" } ], "mainSector": { "id": "Oq4A79YZZ8E" }, - "indicatorType": "sub", + "indicatorType": "custom", "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "KecvTPeGAHI", - "code": "P030801", - "name": "pde-P030801" - } - ], + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "G8YTyVQiHgD", - "name": "de-P030500", - "code": "P030500", - "description": "de-description-P030500", + "id": "iSisFpnDzIf", + "name": "de-P070003", + "code": "P070003", + "externalsDescription": "", + "description": "de-description-P070003", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "305" + "id": "i8qug2Himby", + "series": "700" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uu2HUeQTQ46", - "name": "de-B030400", - "code": "B030400", - "description": "de-description-B030400", + "id": "CI8NCm34d7D", + "name": "de-B070004", + "code": "B070004", + "externalsDescription": "", + "description": "de-description-B070004", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "304" + "id": "i8qug2Himby", + "series": "700" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "G8YTyVQiHgD", - "code": "P030500", - "name": "pde-P030500" + "id": "SQy5q6kCYI1", + "code": "P070005", + "name": "pde-P070005" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WmIVrE9jpWP", - "name": "de-P030604", - "code": "P030604", - "description": "de-description-P030604", + "id": "GeGEm2k6WKy", + "name": "de-P070200", + "code": "P070200", + "externalsDescription": "", + "description": "de-description-P070200", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "306" + "id": "i8qug2Himby", + "series": "702" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "GsKksqhBDzS", + "name": "de-P070102", + "code": "P070102", + "externalsDescription": "", + "description": "de-description-P070102", + "sectorsInfo": [ + { + "id": "i8qug2Himby", + "series": "701" + } + ], + "mainSector": { + "id": "i8qug2Himby" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -7689,77 +11530,83 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "aoaig04eQSL", - "name": "de-B030203", - "code": "B030203", - "description": "de-description-B030203", + "id": "umkL2sEVSNR", + "name": "de-B070800", + "code": "B070800", + "externalsDescription": "", + "description": "de-description-B070800", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "302" + "id": "i8qug2Himby", + "series": "708" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "iUGimOzXgOL", - "code": "P030312", - "name": "pde-P030312" + "id": "eAkVLI8mKBa", + "code": "P070900", + "name": "pde-P070900" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "a08FKV0iidX", - "name": "de-B030003", - "code": "B030003", - "description": "de-description-B030003", + "id": "eAkVLI8mKBa", + "name": "de-P070900", + "code": "P070900", + "externalsDescription": "", + "description": "de-description-P070900", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "300" + "id": "i8qug2Himby", + "series": "709" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, - "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "indicatorType": "global", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "myER4HL7jIC", - "name": "de-P030804", - "code": "P030804", - "description": "de-description-P030804", + "id": "GWK26SqFbgS", + "name": "de-P070006", + "code": "P070006", + "externalsDescription": "", + "description": "de-description-P070006", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "308" + "id": "i8qug2Himby", + "series": "700" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -7767,23 +11614,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uE6ZPpbPz66", - "name": "de-P030008", - "code": "P030008", - "description": "de-description-P030008", + "id": "OKATOswBVFp", + "name": "de-P070202", + "code": "P070202", + "externalsDescription": "", + "description": "de-description-P070202", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "300" + "id": "i8qug2Himby", + "series": "702" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -7791,47 +11640,51 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "aGqgx6eCXIP", - "name": "de-B030004", - "code": "B030004", - "description": "de-description-B030004", + "id": "SYEA0uCdMQY", + "name": "de-P070101", + "code": "P070101", + "externalsDescription": "", + "description": "de-description-P070101", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "300" + "id": "i8qug2Himby", + "series": "701" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "mSks6f7LVkn", - "name": "de-P030313", - "code": "P030313", - "description": "de-description-P030313", + "id": "Oo8Ljg8MUlo", + "name": "de-P070103", + "code": "P070103", + "externalsDescription": "", + "description": "de-description-P070103", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "i8qug2Himby", + "series": "701" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -7839,23 +11692,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "ugE5QIKn3l1", - "name": "de-P030309", - "code": "P030309", - "description": "de-description-P030309", + "id": "KSIDMpRN98y", + "name": "de-P070203", + "code": "P070203", + "externalsDescription": "", + "description": "de-description-P070203", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "i8qug2Himby", + "series": "702" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -7863,47 +11718,57 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "OMUvfdhoG7W", - "name": "de-P030302", - "code": "P030302", - "description": "de-description-P030302", + "id": "Ks4y2ZCBejU", + "name": "de-B070002", + "code": "B070002", + "externalsDescription": "", + "description": "de-description-B070002", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "i8qug2Himby", + "series": "700" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "iSisFpnDzIf", + "code": "P070003", + "name": "pde-P070003" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "aIuubwhMJ9J", - "name": "de-P030802", - "code": "P030802", - "description": "de-description-P030802", + "id": "Cg4c5HRdyJt", + "name": "de-P070201", + "code": "P070201", + "externalsDescription": "", + "description": "de-description-P070201", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "308" + "id": "i8qug2Himby", + "series": "702" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -7911,53 +11776,57 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "egQPupxcfGR", - "name": "de-B030104", - "code": "B030104", - "description": "de-description-B030104", + "id": "WUMjtbgofs2", + "name": "de-B070700", + "code": "B070700", + "externalsDescription": "", + "description": "de-description-B070700", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "301" + "id": "i8qug2Himby", + "series": "707" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "qA8PtX8Yg8C", - "code": "P030304", - "name": "pde-P030304" + "id": "qkyeCTJHU2d", + "code": "P070600", + "name": "pde-P070600" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "SC6PII9boW6", - "name": "de-P030311", - "code": "P030311", - "description": "de-description-P030311", + "id": "S20aprHSmoY", + "name": "de-P070001", + "code": "P070001", + "externalsDescription": "", + "description": "de-description-P070001", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "i8qug2Himby", + "series": "700" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -7965,137 +11834,185 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "ecQncxEhoEE", - "name": "de-B030101", - "code": "B030101", - "description": "de-description-B030101", + "id": "i0ayw9a7y7J", + "name": "de-P070100", + "code": "P070100", + "externalsDescription": "", + "description": "de-description-P070100", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "301" + "id": "i8qug2Himby", + "series": "701" + }, + { + "id": "OcIDwMJf7VH", + "series": "900" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, - "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "uUENmyjNVbT", - "code": "P030301", - "name": "pde-P030301" - } - ], + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "acwDBR7ggHo", - "name": "de-B030006", - "code": "B030006", - "description": "de-description-B030006", + "id": "me67rLoG7Ug", + "name": "de-B070500", + "code": "B070500", + "externalsDescription": "", + "description": "de-description-B070500", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "300" + "id": "i8qug2Himby", + "series": "705" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "a2QVTkHYtMr", - "name": "de-B030201", - "code": "B030201", - "description": "de-description-B030201", + "id": "qkyeCTJHU2d", + "name": "de-P070600", + "code": "P070600", + "externalsDescription": "", + "description": "de-description-P070600", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "302" + "id": "i8qug2Himby", + "series": "706" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "i8qug2Himby" }, - "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "SQy5q6kCYI1", + "name": "de-P070005", + "code": "P070005", + "externalsDescription": "", + "description": "de-description-P070005", + "sectorsInfo": [ { - "id": "i6gH2qYAkuy", - "code": "P030310", - "name": "pde-P030310" + "id": "i8qug2Himby", + "series": "700" } ], + "mainSector": { + "id": "i8qug2Himby" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uEmAYQ6OMAc", - "name": "de-B030702", - "code": "B030702", - "description": "de-description-B030702", + "id": "qgaoVOkdLWl", + "name": "de-P090201", + "code": "P090201", + "externalsDescription": "", + "description": "de-description-P090201", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "307" + "id": "OcIDwMJf7VH", + "series": "902" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "OcIDwMJf7VH" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "uqQzib8Ybsd", + "name": "de-P090200", + "code": "P090200", + "externalsDescription": "", + "description": "de-description-P090200", + "sectorsInfo": [ { - "id": "aIuubwhMJ9J", - "code": "P030802", - "name": "pde-P030802" + "id": "OcIDwMJf7VH", + "series": "902" } ], + "mainSector": { + "id": "OcIDwMJf7VH" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "iUGimOzXgOL", - "name": "de-P030312", - "code": "P030312", - "description": "de-description-P030312", + "id": "eeIVMtUFRVp", + "name": "de-P090202", + "code": "P090202", + "externalsDescription": "", + "description": "de-description-P090202", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "OcIDwMJf7VH", + "series": "902" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "OcIDwMJf7VH" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -8103,71 +12020,77 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KgyKmC4waTM", - "name": "de-P030502", - "code": "P030502", - "description": "de-description-P030502", + "id": "GMW6KDNPTEh", + "name": "de-P090300", + "code": "P090300", + "externalsDescription": "", + "description": "de-description-P090300", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "305" + "id": "OcIDwMJf7VH", + "series": "903" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "OcIDwMJf7VH" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "i8a8inqJcXi", - "name": "de-P030603", - "code": "P030603", - "description": "de-description-P030603", + "id": "qS1nbDQmfBF", + "name": "de-P090100", + "code": "P090100", + "externalsDescription": "", + "description": "de-description-P090100", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "306" + "id": "OcIDwMJf7VH", + "series": "901" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "OcIDwMJf7VH" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uUENmyjNVbT", - "name": "de-P030301", - "code": "P030301", - "description": "de-description-P030301", + "id": "CyyWEcz5o5G", + "name": "de-P120203", + "code": "P120203", + "externalsDescription": "", + "description": "de-description-P120203", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "WuI0CSeCdn7", + "series": "1202" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "WuI0CSeCdn7" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -8175,107 +12098,115 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "ycWiYB14jfJ", - "name": "de-B030200", - "code": "B030200", - "description": "de-description-B030200", + "id": "WmauKiAiueX", + "name": "de-B120104", + "code": "B120104", + "externalsDescription": "", + "description": "de-description-B120104", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "302" + "id": "WuI0CSeCdn7", + "series": "1201" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "WuI0CSeCdn7" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "CkgxCiq5G8x", - "code": "P030300", - "name": "pde-P030300" + "id": "eYIJJrOJ0JT", + "code": "P120204", + "name": "pde-P120204" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "qm6HENhtZpz", - "name": "de-P030600", - "code": "P030600", - "description": "de-description-P030600", + "id": "eYMalffxy0L", + "name": "de-P120201", + "code": "P120201", + "externalsDescription": "", + "description": "de-description-P120201", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "306" + "id": "WuI0CSeCdn7", + "series": "1202" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "WuI0CSeCdn7" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "mkOo1Ano2Te", - "name": "de-B030103", - "code": "B030103", - "description": "de-description-B030103", + "id": "awsNtaiPxBR", + "name": "de-B120100", + "code": "B120100", + "externalsDescription": "", + "description": "de-description-B120100", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "301" + "id": "WuI0CSeCdn7", + "series": "1201" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "WuI0CSeCdn7" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "qe0JpwLEGgh", - "code": "P030303", - "name": "pde-P030303" + "id": "em64U7iG9nf", + "code": "P120200", + "name": "pde-P120200" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "GAd3Dt1Q43e", - "name": "de-P030305", - "code": "P030305", - "description": "de-description-P030305", + "id": "ysU7uKQJf1T", + "name": "de-P120202", + "code": "P120202", + "externalsDescription": "", + "description": "de-description-P120202", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "WuI0CSeCdn7", + "series": "1202" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "WuI0CSeCdn7" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -8283,47 +12214,57 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "O2SOwpK60v3", - "name": "de-P030306", - "code": "P030306", - "description": "de-description-P030306", + "id": "m8UnBobumQc", + "name": "de-B120101", + "code": "B120101", + "externalsDescription": "", + "description": "de-description-B120101", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "WuI0CSeCdn7", + "series": "1201" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "WuI0CSeCdn7" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "eYMalffxy0L", + "code": "P120201", + "name": "pde-P120201" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "eomuFjZVSgu", - "name": "de-P030501", - "code": "P030501", - "description": "de-description-P030501", + "id": "eYIJJrOJ0JT", + "name": "de-P120204", + "code": "P120204", + "externalsDescription": "", + "description": "de-description-P120204", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "305" + "id": "WuI0CSeCdn7", + "series": "1202" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "WuI0CSeCdn7" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -8331,83 +12272,89 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CC6Iy1wakVf", - "name": "de-B030109", - "code": "B030109", - "description": "de-description-B030109", + "id": "GAKypUThMRr", + "name": "de-B120102", + "code": "B120102", + "externalsDescription": "", + "description": "de-description-B120102", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "301" + "id": "WuI0CSeCdn7", + "series": "1201" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "WuI0CSeCdn7" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "ugE5QIKn3l1", - "code": "P030309", - "name": "pde-P030309" + "id": "ysU7uKQJf1T", + "code": "P120202", + "name": "pde-P120202" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "ewAjv4vWJAm", - "name": "de-B030401", - "code": "B030401", - "description": "de-description-B030401", + "id": "qK4YkTO0rZL", + "name": "de-B120103", + "code": "B120103", + "externalsDescription": "", + "description": "de-description-B120103", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "304" + "id": "WuI0CSeCdn7", + "series": "1201" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "WuI0CSeCdn7" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "eomuFjZVSgu", - "code": "P030501", - "name": "pde-P030501" + "id": "CyyWEcz5o5G", + "code": "P120203", + "name": "pde-P120203" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "K6OYPzO1rVh", - "name": "de-P030307", - "code": "P030307", - "description": "de-description-P030307", + "id": "iCyWMeyLZSj", + "name": "de-P100107", + "code": "P100107", + "externalsDescription": "", + "description": "de-description-P100107", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "auULQasRbJL", + "series": "1001" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -8415,227 +12362,291 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uMeWCCYnx6y", - "name": "de-B030106", - "code": "B030106", - "description": "de-description-B030106", + "id": "qYmi5h7nMi5", + "name": "de-P100105", + "code": "P100105", + "externalsDescription": "", + "description": "de-description-P100105", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "301" + "id": "auULQasRbJL", + "series": "1001" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "KueoAZr2xIV", + "name": "de-P100800", + "code": "P100800", + "externalsDescription": "", + "description": "de-description-P100800", + "sectorsInfo": [ { - "id": "O2SOwpK60v3", - "code": "P030306", - "name": "pde-P030306" + "id": "auULQasRbJL", + "series": "1008" } ], + "mainSector": { + "id": "auULQasRbJL" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "S4cFVOMqzOC", - "name": "de-B030108", - "code": "B030108", - "description": "de-description-B030108", + "id": "uoaCYzmXcE8", + "name": "de-P100304", + "code": "P100304", + "externalsDescription": "", + "description": "de-description-P100304", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "301" + "id": "auULQasRbJL", + "series": "1003" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" + }, + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" + }, + "selectable": true + }, + { + "id": "Wmquc4R3BkI", + "name": "de-B100002", + "code": "B100002", + "externalsDescription": "", + "description": "de-description-B100002", + "sectorsInfo": [ + { + "id": "auULQasRbJL", + "series": "1000" + } + ], + "mainSector": { + "id": "auULQasRbJL" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [ + "pairedDataElements": [], + "countingMethod": "", + "externals": [], + "categoryCombo": { + "id": "bjDvmb4bfuf", + "displayName": "None" + }, + "selectable": true + }, + { + "id": "mu0Ek4JypBO", + "name": "de-P100100", + "code": "P100100", + "externalsDescription": "", + "description": "de-description-P100100", + "sectorsInfo": [ { - "id": "yAEbna4Lrun", - "code": "P030308", - "name": "pde-P030308" + "id": "auULQasRbJL", + "series": "1001" } ], + "mainSector": { + "id": "auULQasRbJL" + }, + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yukjouczkUZ", - "name": "de-B030007", - "code": "B030007", - "description": "de-description-B030007", + "id": "eaiqACnKxjs", + "name": "de-B100700", + "code": "B100700", + "externalsDescription": "", + "description": "de-description-B100700", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "300" + "id": "auULQasRbJL", + "series": "1007" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "uE6ZPpbPz66", - "code": "P030008", - "name": "pde-P030008" + "id": "KueoAZr2xIV", + "code": "P100800", + "name": "pde-P100800" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "e8PLRnSt0Od", - "name": "de-B030102", - "code": "B030102", - "description": "de-description-B030102", + "id": "uym0D98bxI5", + "name": "de-P100900", + "code": "P100900", + "externalsDescription": "", + "description": "de-description-P100900", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "301" + "id": "auULQasRbJL", + "series": "1009" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, - "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "OMUvfdhoG7W", - "code": "P030302", - "name": "pde-P030302" - } - ], + "indicatorType": "global", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CkgxCiq5G8x", - "name": "de-P030300", - "code": "P030300", - "description": "de-description-P030300", + "id": "SaqE3wyYRHP", + "name": "de-P100003", + "code": "P100003", + "externalsDescription": "", + "description": "de-description-P100003", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "auULQasRbJL", + "series": "1000" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "ye0Qx76WlzG", - "name": "de-B030402", - "code": "B030402", - "description": "de-description-B030402", + "id": "eea0MAkiPCL", + "name": "de-P100301", + "code": "P100301", + "externalsDescription": "", + "description": "de-description-P100301", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "304" + "id": "auULQasRbJL", + "series": "1003" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "KgyKmC4waTM", - "code": "P030502", - "name": "pde-P030502" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "aMArYG9xgYf", - "name": "de-B030204", - "code": "B030204", - "description": "de-description-B030204", + "id": "mamIIS1OdHC", + "name": "de-P100902", + "code": "P100902", + "externalsDescription": "", + "description": "de-description-P100902", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "302" + "id": "auULQasRbJL", + "series": "1009" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "mSks6f7LVkn", - "code": "P030313", - "name": "pde-P030313" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WSgnt7psGh6", - "name": "de-P030601", - "code": "P030601", - "description": "de-description-P030601", + "id": "GCi0yI0lEFt", + "name": "de-P100202", + "code": "P100202", + "externalsDescription": "", + "description": "de-description-P100202", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "306" + "id": "auULQasRbJL", + "series": "1002" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -8643,23 +12654,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qe0JpwLEGgh", - "name": "de-P030303", - "code": "P030303", - "description": "de-description-P030303", + "id": "S62f9sHZt5o", + "name": "de-P100402", + "code": "P100402", + "externalsDescription": "", + "description": "de-description-P100402", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "auULQasRbJL", + "series": "1004" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -8667,136 +12680,129 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "W8shJ2IPnKl", - "name": "de-B030105", - "code": "B030105", - "description": "de-description-B030105", + "id": "OI42rcjHPWP", + "name": "de-P100204", + "code": "P100204", + "externalsDescription": "", + "description": "de-description-P100204", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "301" + "id": "auULQasRbJL", + "series": "1002" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "GAd3Dt1Q43e", - "code": "P030305", - "name": "pde-P030305" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "W44mFIxdgyE", - "name": "de-B030700", - "code": "B030700", - "description": "de-description-B030700", + "id": "i6AroUcNO7Q", + "name": "de-P100005", + "code": "P100005", + "externalsDescription": "", + "description": "de-description-P100005", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "307" + "id": "auULQasRbJL", + "series": "1000" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, - "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "WwsJ9Fa1IWy", - "code": "P030800", - "name": "pde-P030800" - } - ], + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qk61QKV3q0q", - "name": "de-B039999", - "code": "B039999", - "description": "de-description-B039999", + "id": "aiisN6lDbcy", + "name": "de-P100403", + "code": "P100403", + "externalsDescription": "", + "description": "de-description-P100403", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL", + "series": "1004" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, - "indicatorType": "custom", - "peopleOrBenefit": "benefit", + "indicatorType": "sub", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "i4KI6fcLK8i", - "name": "de-B030202", - "code": "B030202", - "description": "de-description-B030202", + "id": "eIGcZfpUnRn", + "name": "de-P100102", + "code": "P100102", + "externalsDescription": "", + "description": "de-description-P100102", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "302" + "id": "auULQasRbJL", + "series": "1001" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "SC6PII9boW6", - "code": "P030311", - "name": "pde-P030311" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KecvTPeGAHI", - "name": "de-P030801", - "code": "P030801", - "description": "de-description-P030801", + "id": "Ky6VzmlyzCj", + "name": "de-P100106", + "code": "P100106", + "externalsDescription": "", + "description": "de-description-P100106", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "308" + "id": "auULQasRbJL", + "series": "1001" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -8804,131 +12810,135 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KGEBgSleIAf", - "name": "de-P030605", - "code": "P030605", - "description": "de-description-P030605", + "id": "ywQfPB6FJCu", + "name": "de-B100001", + "code": "B100001", + "externalsDescription": "", + "description": "de-description-B100001", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "306" + "id": "auULQasRbJL", + "series": "1000" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "ieMPt2lJ3lp", - "name": "de-B030100", - "code": "B030100", - "description": "de-description-B030100", + "id": "yIgnPUbwsLS", + "name": "de-B100500", + "code": "B100500", + "externalsDescription": "", + "description": "de-description-B100500", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "301" + "id": "auULQasRbJL", + "series": "1005" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "CkgxCiq5G8x", - "code": "P030300", - "name": "pde-P030300" + "id": "OIisZWsbUWF", + "code": "P100600", + "name": "pde-P100600" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WwsJ9Fa1IWy", - "name": "de-P030800", - "code": "P030800", - "description": "de-description-P030800", + "id": "yqmyP1vNJk0", + "name": "de-P100303", + "code": "P100303", + "externalsDescription": "", + "description": "de-description-P100303", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "308" + "id": "auULQasRbJL", + "series": "1003" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", - "externals": ["OFDA"], + "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GQ8fnGfxpqL", - "name": "de-B030704", - "code": "B030704", - "description": "de-description-B030704", + "id": "OSOCkyUnh9m", + "name": "de-P100103", + "code": "P100103", + "externalsDescription": "", + "description": "de-description-P100103", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "307" + "id": "auULQasRbJL", + "series": "1001" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "myER4HL7jIC", - "code": "P030804", - "name": "pde-P030804" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "aWeogk5FTW7", - "name": "de-P030803", - "code": "P030803", - "description": "de-description-P030803", + "id": "CQEv5mMFQwk", + "name": "de-P100104", + "code": "P100104", + "externalsDescription": "", + "description": "de-description-P100104", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "308" + "id": "auULQasRbJL", + "series": "1001" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -8936,95 +12946,103 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qA8PtX8Yg8C", - "name": "de-P030304", - "code": "P030304", - "description": "de-description-P030304", + "id": "CAoDnDrYQ5S", + "name": "de-P100200", + "code": "P100200", + "externalsDescription": "", + "description": "de-description-P100200", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "auULQasRbJL", + "series": "1002" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yAEbna4Lrun", - "name": "de-P030308", - "code": "P030308", - "description": "de-description-P030308", + "id": "OIisZWsbUWF", + "name": "de-P100600", + "code": "P100600", + "externalsDescription": "", + "description": "de-description-P100600", "sectorsInfo": [ { - "id": "Oq4A79YZZ8E", - "series": "303" + "id": "auULQasRbJL", + "series": "1006" } ], "mainSector": { - "id": "Oq4A79YZZ8E" + "id": "auULQasRbJL" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qmMfNKlOnYl", - "name": "de-P070004", - "code": "P070004", - "description": "de-description-P070004", + "id": "iSIA2YE27K0", + "name": "de-P101100", + "code": "P101100", + "externalsDescription": "", + "description": "de-description-P101100", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "700" + "id": "auULQasRbJL", + "series": "1011" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Cg4c5HRdyJt", - "name": "de-P070201", - "code": "P070201", - "description": "de-description-P070201", + "id": "SqW0WwXRcEy", + "name": "de-P100203", + "code": "P100203", + "externalsDescription": "", + "description": "de-description-P100203", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "702" + "id": "auULQasRbJL", + "series": "1002" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9032,23 +13050,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qkyeCTJHU2d", - "name": "de-P070600", - "code": "P070600", - "description": "de-description-P070600", + "id": "iCKxYSFIlcu", + "name": "de-P100300", + "code": "P100300", + "externalsDescription": "", + "description": "de-description-P100300", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "706" + "id": "auULQasRbJL", + "series": "1003" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, "indicatorType": "global", "peopleOrBenefit": "people", @@ -9056,23 +13076,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "SYEA0uCdMQY", - "name": "de-P070101", - "code": "P070101", - "description": "de-description-P070101", + "id": "qcwhkIgx56S", + "name": "de-P100101", + "code": "P100101", + "externalsDescription": "", + "description": "de-description-P100101", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "701" + "id": "auULQasRbJL", + "series": "1001" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9080,83 +13102,83 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "umkL2sEVSNR", - "name": "de-B070800", - "code": "B070800", - "description": "de-description-B070800", + "id": "Sy02tbklwzs", + "name": "de-P100401", + "code": "P100401", + "externalsDescription": "", + "description": "de-description-P100401", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "708" + "id": "auULQasRbJL", + "series": "1004" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, - "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "eAkVLI8mKBa", - "code": "P070900", - "name": "pde-P070900" - } - ], + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "a64hlNkGyfj", - "name": "de-B070003", - "code": "B070003", - "description": "de-description-B070003", + "id": "yKY8IwqOAdj", + "name": "de-B101000", + "code": "B101000", + "externalsDescription": "", + "description": "de-description-B101000", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "700" + "id": "auULQasRbJL", + "series": "1010" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "qmMfNKlOnYl", - "code": "P070004", - "name": "pde-P070004" + "id": "iSIA2YE27K0", + "code": "P101100", + "name": "pde-P101100" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "SQy5q6kCYI1", - "name": "de-P070005", - "code": "P070005", - "description": "de-description-P070005", + "id": "GgacCB3dFLy", + "name": "de-P100901", + "code": "P100901", + "externalsDescription": "", + "description": "de-description-P100901", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "700" + "id": "auULQasRbJL", + "series": "1009" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9164,77 +13186,77 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "me67rLoG7Ug", - "name": "de-B070500", - "code": "B070500", - "description": "de-description-B070500", + "id": "qAM1NbCbS9G", + "name": "de-P100400", + "code": "P100400", + "externalsDescription": "", + "description": "de-description-P100400", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "705" + "id": "auULQasRbJL", + "series": "1004" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, "indicatorType": "global", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WUMjtbgofs2", - "name": "de-B070700", - "code": "B070700", - "description": "de-description-B070700", + "id": "yMUpSkWEOKV", + "name": "de-P100302", + "code": "P100302", + "externalsDescription": "", + "description": "de-description-P100302", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "707" + "id": "auULQasRbJL", + "series": "1003" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, - "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "qkyeCTJHU2d", - "code": "P070600", - "name": "pde-P070600" - } - ], + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Oo8Ljg8MUlo", - "name": "de-P070103", - "code": "P070103", - "description": "de-description-P070103", + "id": "WKWMzV885LL", + "name": "de-P100205", + "code": "P100205", + "externalsDescription": "", + "description": "de-description-P100205", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "701" + "id": "auULQasRbJL", + "series": "1002" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9242,95 +13264,109 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GeGEm2k6WKy", - "name": "de-P070200", - "code": "P070200", - "description": "de-description-P070200", + "id": "m6aMAagwCdT", + "name": "de-B100004", + "code": "B100004", + "externalsDescription": "", + "description": "de-description-B100004", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "702" + "id": "auULQasRbJL", + "series": "1000" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, - "indicatorType": "global", - "peopleOrBenefit": "people", + "indicatorType": "sub", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "eAkVLI8mKBa", - "name": "de-P070900", - "code": "P070900", - "description": "de-description-P070900", + "id": "aMYPyQu0kYd", + "name": "de-P100201", + "code": "P100201", + "externalsDescription": "", + "description": "de-description-P100201", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "709" + "id": "auULQasRbJL", + "series": "1002" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "auULQasRbJL" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KSIDMpRN98y", - "name": "de-P070203", - "code": "P070203", - "description": "de-description-P070203", + "id": "WiaeLPmiwPo", + "name": "de-B130008", + "code": "B130008", + "externalsDescription": "", + "description": "de-description-B130008", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "702" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "WBdKcnWHHua", + "code": "P130009", + "name": "pde-P130009" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "mm8STQA7P0V", - "name": "de-P070400", - "code": "P070400", - "description": "de-description-P070400", + "id": "SeGEQFjX13X", + "name": "de-P131900", + "code": "P131900", + "externalsDescription": "", + "description": "de-description-P131900", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "704" + "id": "yc6nqm2e2wG", + "series": "1319" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "yc6nqm2e2wG" }, "indicatorType": "global", "peopleOrBenefit": "people", @@ -9338,75 +13374,83 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GsKksqhBDzS", - "name": "de-P070102", - "code": "P070102", - "description": "de-description-P070102", + "id": "yclFJtnRoCu", + "name": "de-B130004", + "code": "B130004", + "externalsDescription": "", + "description": "de-description-B130004", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "701" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "i0ayw9a7y7J", - "name": "de-P070100", - "code": "P070100", - "description": "de-description-P070100", + "id": "CW87Mwvte6I", + "name": "de-B130015", + "code": "B130015", + "externalsDescription": "", + "description": "de-description-B130015", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "701" - }, - { - "id": "OcIDwMJf7VH", - "series": "900" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "yc6nqm2e2wG" }, - "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "eiik2Vv9wO6", + "code": "P130016", + "name": "pde-P130016" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, - "selectable": true - }, - { - "id": "S20aprHSmoY", - "name": "de-P070001", - "code": "P070001", - "description": "de-description-P070001", + "selectable": true + }, + { + "id": "mW8ReUrYDmi", + "name": "de-P130805", + "code": "P130805", + "externalsDescription": "", + "description": "de-description-P130805", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "700" + "id": "yc6nqm2e2wG", + "series": "1308" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9414,23 +13458,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "KIM3IoYEn0Q", - "name": "de-P070002", - "code": "P070002", - "description": "de-description-P070002", + "id": "WIK2mVOiFyl", + "name": "de-P130001", + "code": "P130001", + "externalsDescription": "", + "description": "de-description-P130001", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "700" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9438,23 +13484,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "OKATOswBVFp", - "name": "de-P070202", - "code": "P070202", - "description": "de-description-P070202", + "id": "SUCCf4QXh1M", + "name": "de-P131703", + "code": "P131703", + "externalsDescription": "", + "description": "de-description-P131703", "sectorsInfo": [ { - "id": "i8qug2Himby", - "series": "702" + "id": "yc6nqm2e2wG", + "series": "1317" } ], "mainSector": { - "id": "i8qug2Himby" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9462,23 +13510,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "eeIVMtUFRVp", - "name": "de-P090202", - "code": "P090202", - "description": "de-description-P090202", + "id": "mM4AQHpZ3WZ", + "name": "de-P130014", + "code": "P130014", + "externalsDescription": "", + "description": "de-description-P130014", "sectorsInfo": [ { - "id": "OcIDwMJf7VH", - "series": "902" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "OcIDwMJf7VH" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9486,23 +13536,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GMW6KDNPTEh", - "name": "de-P090300", - "code": "P090300", - "description": "de-description-P090300", + "id": "im8AIH2byzY", + "name": "de-P131800", + "code": "P131800", + "externalsDescription": "", + "description": "de-description-P131800", "sectorsInfo": [ { - "id": "OcIDwMJf7VH", - "series": "903" + "id": "yc6nqm2e2wG", + "series": "1318" } ], "mainSector": { - "id": "OcIDwMJf7VH" + "id": "yc6nqm2e2wG" }, "indicatorType": "global", "peopleOrBenefit": "people", @@ -9510,47 +13562,57 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uqQzib8Ybsd", - "name": "de-P090200", - "code": "P090200", - "description": "de-description-P090200", + "id": "S0yUUpEE59y", + "name": "de-B130200", + "code": "B130200", + "externalsDescription": "", + "description": "de-description-B130200", "sectorsInfo": [ { - "id": "OcIDwMJf7VH", - "series": "902" + "id": "yc6nqm2e2wG", + "series": "1302" } ], "mainSector": { - "id": "OcIDwMJf7VH" + "id": "yc6nqm2e2wG" }, "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "OymUIzWpKNr", + "code": "P130300", + "name": "pde-P130300" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "qgaoVOkdLWl", - "name": "de-P090201", - "code": "P090201", - "description": "de-description-P090201", + "id": "W8scoR5nGS6", + "name": "de-P131704", + "code": "P131704", + "externalsDescription": "", + "description": "de-description-P131704", "sectorsInfo": [ { - "id": "OcIDwMJf7VH", - "series": "902" + "id": "yc6nqm2e2wG", + "series": "1317" } ], "mainSector": { - "id": "OcIDwMJf7VH" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9558,125 +13620,141 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qS1nbDQmfBF", - "name": "de-P090100", - "code": "P090100", - "description": "de-description-P090100", + "id": "a4KuBxPzAAC", + "name": "de-B130013", + "code": "B130013", + "externalsDescription": "", + "description": "de-description-B130013", "sectorsInfo": [ { - "id": "OcIDwMJf7VH", - "series": "901" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "OcIDwMJf7VH" + "id": "yc6nqm2e2wG" }, - "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "sub", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "mM4AQHpZ3WZ", + "code": "P130014", + "name": "pde-P130014" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "CyyWEcz5o5G", - "name": "de-P120203", - "code": "P120203", - "description": "de-description-P120203", + "id": "yaeeFvRaQyC", + "name": "de-P130500", + "code": "P130500", + "externalsDescription": "", + "description": "de-description-P130500", "sectorsInfo": [ { - "id": "WuI0CSeCdn7", - "series": "1202" + "id": "yc6nqm2e2wG", + "series": "1305" } ], "mainSector": { - "id": "WuI0CSeCdn7" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "ysU7uKQJf1T", - "name": "de-P120202", - "code": "P120202", - "description": "de-description-P120202", + "id": "K8E5Zrb51OK", + "name": "de-P130800", + "code": "P130800", + "externalsDescription": "", + "description": "de-description-P130800", "sectorsInfo": [ { - "id": "WuI0CSeCdn7", - "series": "1202" + "id": "yc6nqm2e2wG", + "series": "1308" } ], "mainSector": { - "id": "WuI0CSeCdn7" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "awsNtaiPxBR", - "name": "de-B120100", - "code": "B120100", - "description": "de-description-B120100", + "id": "aceAgLaBFlz", + "name": "de-B130900", + "code": "B130900", + "externalsDescription": "", + "description": "de-description-B130900", "sectorsInfo": [ { - "id": "WuI0CSeCdn7", - "series": "1201" + "id": "yc6nqm2e2wG", + "series": "1309" } ], "mainSector": { - "id": "WuI0CSeCdn7" + "id": "yc6nqm2e2wG" }, "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "em64U7iG9nf", - "code": "P120200", - "name": "pde-P120200" + "id": "akIHwQmoI4A", + "code": "P131000", + "name": "pde-P131000" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "eYMalffxy0L", - "name": "de-P120201", - "code": "P120201", - "description": "de-description-P120201", + "id": "yEfnhP9dD3L", + "name": "de-P130806", + "code": "P130806", + "externalsDescription": "", + "description": "de-description-P130806", "sectorsInfo": [ { - "id": "WuI0CSeCdn7", - "series": "1202" + "id": "yc6nqm2e2wG", + "series": "1308" } ], "mainSector": { - "id": "WuI0CSeCdn7" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9684,83 +13762,77 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "m8UnBobumQc", - "name": "de-B120101", - "code": "B120101", - "description": "de-description-B120101", + "id": "WBdKcnWHHua", + "name": "de-P130009", + "code": "P130009", + "externalsDescription": "", + "description": "de-description-P130009", "sectorsInfo": [ { - "id": "WuI0CSeCdn7", - "series": "1201" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "WuI0CSeCdn7" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "eYMalffxy0L", - "code": "P120201", - "name": "pde-P120201" - } - ], + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "WmauKiAiueX", - "name": "de-B120104", - "code": "B120104", - "description": "de-description-B120104", + "id": "m2KG0TbjOf1", + "name": "de-B130011", + "code": "B130011", + "externalsDescription": "", + "description": "de-description-B130011", "sectorsInfo": [ { - "id": "WuI0CSeCdn7", - "series": "1201" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "WuI0CSeCdn7" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "eYIJJrOJ0JT", - "code": "P120204", - "name": "pde-P120204" - } - ], + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "eYIJJrOJ0JT", - "name": "de-P120204", - "code": "P120204", - "description": "de-description-P120204", + "id": "uSmZEdlVd1b", + "name": "de-P131701", + "code": "P131701", + "externalsDescription": "", + "description": "de-description-P131701", "sectorsInfo": [ { - "id": "WuI0CSeCdn7", - "series": "1202" + "id": "yc6nqm2e2wG", + "series": "1317" } ], "mainSector": { - "id": "WuI0CSeCdn7" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9768,83 +13840,89 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GAKypUThMRr", - "name": "de-B120102", - "code": "B120102", - "description": "de-description-B120102", + "id": "ugYZX8jfuOo", + "name": "de-B131100", + "code": "B131100", + "externalsDescription": "", + "description": "de-description-B131100", "sectorsInfo": [ { - "id": "WuI0CSeCdn7", - "series": "1201" + "id": "yc6nqm2e2wG", + "series": "1311" } ], "mainSector": { - "id": "WuI0CSeCdn7" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "ysU7uKQJf1T", - "code": "P120202", - "name": "pde-P120202" + "id": "uyuoudahZk3", + "code": "P131200", + "name": "pde-P131200" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "qK4YkTO0rZL", - "name": "de-B120103", - "code": "B120103", - "description": "de-description-B120103", + "id": "KQqApgHmnTs", + "name": "de-B130400", + "code": "B130400", + "externalsDescription": "", + "description": "de-description-B130400", "sectorsInfo": [ { - "id": "WuI0CSeCdn7", - "series": "1201" + "id": "yc6nqm2e2wG", + "series": "1304" } ], "mainSector": { - "id": "WuI0CSeCdn7" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "CyyWEcz5o5G", - "code": "P120203", - "name": "pde-P120203" + "id": "yaeeFvRaQyC", + "code": "P130500", + "name": "pde-P130500" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "S62f9sHZt5o", - "name": "de-P100402", - "code": "P100402", - "description": "de-description-P100402", + "id": "eiik2Vv9wO6", + "name": "de-P130016", + "code": "P130016", + "externalsDescription": "", + "description": "de-description-P130016", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1004" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9852,23 +13930,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "aMYPyQu0kYd", - "name": "de-P100201", - "code": "P100201", - "description": "de-description-P100201", + "id": "SSOeQGprXYn", + "name": "de-P130804", + "code": "P130804", + "externalsDescription": "", + "description": "de-description-P130804", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1002" + "id": "yc6nqm2e2wG", + "series": "1308" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9876,23 +13956,25 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "qcwhkIgx56S", - "name": "de-P100101", - "code": "P100101", - "description": "de-description-P100101", + "id": "qOQzhI7xiCN", + "name": "de-P130801", + "code": "P130801", + "externalsDescription": "", + "description": "de-description-P130801", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1001" + "id": "yc6nqm2e2wG", + "series": "1308" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -9900,143 +13982,135 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yMUpSkWEOKV", - "name": "de-P100302", - "code": "P100302", - "description": "de-description-P100302", + "id": "OymUIzWpKNr", + "name": "de-P130300", + "code": "P130300", + "externalsDescription": "", + "description": "de-description-P130300", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1003" + "id": "yc6nqm2e2wG", + "series": "1303" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "iCyWMeyLZSj", - "name": "de-P100107", - "code": "P100107", - "description": "de-description-P100107", + "id": "KmKezVY1D8f", + "name": "de-P131400", + "code": "P131400", + "externalsDescription": "", + "description": "de-description-P131400", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1001" + "id": "yc6nqm2e2wG", + "series": "1314" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Ky6VzmlyzCj", - "name": "de-P100106", - "code": "P100106", - "description": "de-description-P100106", + "id": "aMOElhvq1vn", + "name": "de-B131601", + "code": "B131601", + "externalsDescription": "", + "description": "de-description-B131601", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1001" + "id": "yc6nqm2e2wG", + "series": "1316" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], - "countingMethod": "", - "externals": [], - "categoryCombo": { - "id": "GKWiemQPU5U" - }, - "selectable": true - }, - { - "id": "qAM1NbCbS9G", - "name": "de-P100400", - "code": "P100400", - "description": "de-description-P100400", - "sectorsInfo": [ + "peopleOrBenefit": "benefit", + "pairedDataElements": [ { - "id": "auULQasRbJL", - "series": "1004" + "id": "uSmZEdlVd1b", + "code": "P131701", + "name": "pde-P131701" } ], - "mainSector": { - "id": "auULQasRbJL" - }, - "indicatorType": "global", - "peopleOrBenefit": "people", - "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "qYmi5h7nMi5", - "name": "de-P100105", - "code": "P100105", - "description": "de-description-P100105", + "id": "eMCKhCswmeX", + "name": "de-P132200", + "code": "P132200", + "externalsDescription": "", + "description": "de-description-P132200", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1001" + "id": "yc6nqm2e2wG", + "series": "1322" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "yqmyP1vNJk0", - "name": "de-P100303", - "code": "P100303", - "description": "de-description-P100303", + "id": "mQghHph4IKD", + "name": "de-P130802", + "code": "P130802", + "externalsDescription": "", + "description": "de-description-P130802", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1003" + "id": "yc6nqm2e2wG", + "series": "1308" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -10044,143 +14118,167 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, - { - "id": "Wmquc4R3BkI", - "name": "de-B100002", - "code": "B100002", - "description": "de-description-B100002", + { + "id": "aCUlORZETcB", + "name": "de-B130100", + "code": "B130100", + "externalsDescription": "", + "description": "de-description-B130100", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1000" + "id": "yc6nqm2e2wG", + "series": "1301" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "eea0MAkiPCL", - "name": "de-P100301", - "code": "P100301", - "description": "de-description-P100301", + "id": "qua6NsVc0NK", + "name": "de-P132400", + "code": "P132400", + "externalsDescription": "", + "description": "de-description-P132400", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1003" + "id": "yc6nqm2e2wG", + "series": "1324" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CAa2HJhcMdZ", - "name": "de-P100701", - "code": "P100701", - "description": "de-description-P100701", + "id": "SGiIDNhFovM", + "name": "de-B130600", + "code": "B130600", + "externalsDescription": "", + "description": "de-description-B130600", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1007" + "id": "yc6nqm2e2wG", + "series": "1306" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "Omobz0poEAJ", + "code": "P130700", + "name": "pde-P130700" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "OSOCkyUnh9m", - "name": "de-P100103", - "code": "P100103", - "description": "de-description-P100103", + "id": "KSk0xFTWOnV", + "name": "de-B131604", + "code": "B131604", + "externalsDescription": "", + "description": "de-description-B131604", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1001" + "id": "yc6nqm2e2wG", + "series": "1316" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "W8scoR5nGS6", + "code": "P131704", + "name": "pde-P131704" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "aiisN6lDbcy", - "name": "de-P100403", - "code": "P100403", - "description": "de-description-P100403", + "id": "qM69VnOH5U7", + "name": "de-P132000", + "code": "P132000", + "externalsDescription": "", + "description": "de-description-P132000", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1004" + "id": "yc6nqm2e2wG", + "series": "1320" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "CQEv5mMFQwk", - "name": "de-P100104", - "code": "P100104", - "description": "de-description-P100104", + "id": "yOTwH4T0Piy", + "name": "de-P130005", + "code": "P130005", + "externalsDescription": "", + "description": "de-description-P130005", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1001" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -10188,101 +14286,103 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "GMYNd6p9774", - "name": "de-B100600", - "code": "B100600", - "description": "de-description-B100600", + "id": "K20gYhaC9Nc", + "name": "de-P130803", + "code": "P130803", + "externalsDescription": "", + "description": "de-description-P130803", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1006" + "id": "yc6nqm2e2wG", + "series": "1308" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "global", - "peopleOrBenefit": "benefit", - "pairedDataElements": [ - { - "id": "Sss1IQxLzyO", - "code": "P100702", - "name": "pde-P100702" - } - ], + "indicatorType": "sub", + "peopleOrBenefit": "people", + "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "ywQfPB6FJCu", - "name": "de-B100001", - "code": "B100001", - "description": "de-description-B100001", + "id": "eMKmLitDAaQ", + "name": "de-P130002", + "code": "P130002", + "externalsDescription": "", + "description": "de-description-P130002", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1000" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", - "peopleOrBenefit": "benefit", + "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "i6AroUcNO7Q", - "name": "de-P100005", - "code": "P100005", - "description": "de-description-P100005", + "id": "Oyqw6aYdHkp", + "name": "de-B130012", + "code": "B130012", + "externalsDescription": "", + "description": "de-description-B130012", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1000" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "m6aMAagwCdT", - "name": "de-B100004", - "code": "B100004", - "description": "de-description-B100004", + "id": "W8egWNMGS4f", + "name": "de-B130007", + "code": "B130007", + "externalsDescription": "", + "description": "de-description-B130007", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1000" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "benefit", @@ -10290,71 +14390,83 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "OI42rcjHPWP", - "name": "de-P100204", - "code": "P100204", - "description": "de-description-P100204", + "id": "uYs3TbLhBws", + "name": "de-B131602", + "code": "B131602", + "externalsDescription": "", + "description": "de-description-B131602", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1002" + "id": "yc6nqm2e2wG", + "series": "1316" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "CgWYGjqNqT7", + "code": "P131702", + "name": "pde-P131702" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "CAoDnDrYQ5S", - "name": "de-P100200", - "code": "P100200", - "description": "de-description-P100200", + "id": "CoSk2Uwumml", + "name": "de-P131902", + "code": "P131902", + "externalsDescription": "", + "description": "de-description-P131902", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1002" + "id": "yc6nqm2e2wG", + "series": "1319" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "mu0Ek4JypBO", - "name": "de-P100100", - "code": "P100100", - "description": "de-description-P100100", + "id": "KywB4uNaLGp", + "name": "de-P131700", + "code": "P131700", + "externalsDescription": "", + "description": "de-description-P131700", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1001" + "id": "yc6nqm2e2wG", + "series": "1317" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "global", "peopleOrBenefit": "people", @@ -10362,119 +14474,129 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "SqW0WwXRcEy", - "name": "de-P100203", - "code": "P100203", - "description": "de-description-P100203", + "id": "uyuoudahZk3", + "name": "de-P131200", + "code": "P131200", + "externalsDescription": "", + "description": "de-description-P131200", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1002" + "id": "yc6nqm2e2wG", + "series": "1312" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "eqolMumZszo", - "name": "de-P100703", - "code": "P100703", - "description": "de-description-P100703", + "id": "SiGa877dkxN", + "name": "de-B130006", + "code": "B130006", + "externalsDescription": "", + "description": "de-description-B130006", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1007" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "uym0D98bxI5", - "name": "de-P100900", - "code": "P100900", - "description": "de-description-P100900", + "id": "S4SyTYURKsv", + "name": "de-P131901", + "code": "P131901", + "externalsDescription": "", + "description": "de-description-P131901", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1009" + "id": "yc6nqm2e2wG", + "series": "1319" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "mwITPAhlsIV", - "name": "de-B100003", - "code": "B100003", - "description": "de-description-B100003", + "id": "akIHwQmoI4A", + "name": "de-P131000", + "code": "P131000", + "externalsDescription": "", + "description": "de-description-P131000", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1000" + "id": "yc6nqm2e2wG", + "series": "1310" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "iiCO3KErryp", - "name": "de-P100700", - "code": "P100700", - "description": "de-description-P100700", + "id": "GYkrgx3wqGz", + "name": "de-P131500", + "code": "P131500", + "externalsDescription": "", + "description": "de-description-P131500", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1007" + "id": "yc6nqm2e2wG", + "series": "1315" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "global", "peopleOrBenefit": "people", @@ -10482,149 +14604,167 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Cow5NLd5mLE", - "name": "de-P100704", - "code": "P100704", - "description": "de-description-P100704", + "id": "uC0w4nTG29i", + "name": "de-B130010", + "code": "B130010", + "externalsDescription": "", + "description": "de-description-B130010", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1007" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", - "peopleOrBenefit": "people", + "peopleOrBenefit": "benefit", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "eIGcZfpUnRn", - "name": "de-P100102", - "code": "P100102", - "description": "de-description-P100102", + "id": "Omobz0poEAJ", + "name": "de-P130700", + "code": "P130700", + "externalsDescription": "", + "description": "de-description-P130700", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1001" + "id": "yc6nqm2e2wG", + "series": "1307" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", + "indicatorType": "global", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "iCKxYSFIlcu", - "name": "de-P100300", - "code": "P100300", - "description": "de-description-P100300", + "id": "qCaKOh97pu5", + "name": "de-P130003", + "code": "P130003", + "externalsDescription": "", + "description": "de-description-P130003", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1003" + "id": "yc6nqm2e2wG", + "series": "1300" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "people", "pairedDataElements": [], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "y6ufXSNhF81", - "name": "de-B100800", - "code": "B100800", - "description": "de-description-B100800", + "id": "mK8Ix4mGY4D", + "name": "de-B132100", + "code": "B132100", + "externalsDescription": "", + "description": "de-description-B132100", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1008" + "id": "yc6nqm2e2wG", + "series": "1321" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "global", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "uym0D98bxI5", - "code": "P100900", - "name": "pde-P100900" + "id": "eMCKhCswmeX", + "code": "P132200", + "name": "pde-P132200" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "Sss1IQxLzyO", - "name": "de-P100702", - "code": "P100702", - "description": "de-description-P100702", + "id": "aEM7IlLGKAs", + "name": "de-B132300", + "code": "B132300", + "externalsDescription": "", + "description": "de-description-B132300", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1007" + "id": "yc6nqm2e2wG", + "series": "1323" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "qua6NsVc0NK", + "code": "P132400", + "name": "pde-P132400" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "GCi0yI0lEFt", - "name": "de-P100202", - "code": "P100202", - "description": "de-description-P100202", + "id": "CgWYGjqNqT7", + "name": "de-P131702", + "code": "P131702", + "externalsDescription": "", + "description": "de-description-P131702", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1002" + "id": "yc6nqm2e2wG", + "series": "1317" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -10632,47 +14772,57 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "uoaCYzmXcE8", - "name": "de-P100304", - "code": "P100304", - "description": "de-description-P100304", + "id": "SgEdN0VXHhx", + "name": "de-B131300", + "code": "B131300", + "externalsDescription": "", + "description": "de-description-B131300", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1003" + "id": "yc6nqm2e2wG", + "series": "1313" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "KmKezVY1D8f", + "code": "P131400", + "name": "pde-P131400" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "WKWMzV885LL", - "name": "de-P100205", - "code": "P100205", - "description": "de-description-P100205", + "id": "OAfITI6SQSe", + "name": "de-P130807", + "code": "P130807", + "externalsDescription": "", + "description": "de-description-P130807", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1002" + "id": "yc6nqm2e2wG", + "series": "1308" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, "indicatorType": "sub", "peopleOrBenefit": "people", @@ -10680,61 +14830,72 @@ "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender" }, "selectable": true }, { - "id": "Sy02tbklwzs", - "name": "de-P100401", - "code": "P100401", - "description": "de-description-P100401", + "id": "OE6RRWU6RTh", + "name": "de-B131600", + "code": "B131600", + "externalsDescription": "", + "description": "de-description-B131600", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1004" + "id": "yc6nqm2e2wG", + "series": "1316" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "sub", - "peopleOrBenefit": "people", - "pairedDataElements": [], + "indicatorType": "global", + "peopleOrBenefit": "benefit", + "pairedDataElements": [ + { + "id": "KywB4uNaLGp", + "code": "P131700", + "name": "pde-P131700" + } + ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "GKWiemQPU5U" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true }, { - "id": "yIgnPUbwsLS", - "name": "de-B100500", - "code": "B100500", - "description": "de-description-B100500", + "id": "KGM59Dza2sg", + "name": "de-B131603", + "code": "B131603", + "externalsDescription": "", + "description": "de-description-B131603", "sectorsInfo": [ { - "id": "auULQasRbJL", - "series": "1005" + "id": "yc6nqm2e2wG", + "series": "1316" } ], "mainSector": { - "id": "auULQasRbJL" + "id": "yc6nqm2e2wG" }, - "indicatorType": "global", + "indicatorType": "sub", "peopleOrBenefit": "benefit", "pairedDataElements": [ { - "id": "CAa2HJhcMdZ", - "code": "P100701", - "name": "pde-P100701" + "id": "SUCCf4QXh1M", + "code": "P131703", + "name": "pde-P131703" } ], "countingMethod": "", "externals": [], "categoryCombo": { - "id": "bjDvmb4bfuf" + "id": "bjDvmb4bfuf", + "displayName": "None" }, "selectable": true } @@ -10762,19 +14923,34 @@ "id": "KqWm4Q0ftG1", "shortName": "AECOM", "displayName": "funder-KqWm4Q0ftG1", - "organisationUnits": [] + "organisationUnits": [ + { + "level": 3, + "id": "umPLxxTujfr" + } + ] }, { "id": "CeApFdQGS5x", "shortName": "AMREF", "displayName": "funder-CeApFdQGS5x", - "organisationUnits": [] + "organisationUnits": [ + { + "level": 3, + "id": "umPLxxTujfr" + } + ] }, { "id": "qMyQJENdWHU", "shortName": "AED", "displayName": "funder-qMyQJENdWHU", - "organisationUnits": [] + "organisationUnits": [ + { + "level": 3, + "id": "HY4yXR2zM9n" + } + ] }, { "id": "qkWv2nJuDZm", @@ -10792,16 +14968,7 @@ "id": "em8NIwi0KvM", "shortName": "AGRIDIUS", "displayName": "funder-em8NIwi0KvM", - "organisationUnits": [ - { - "level": 3, - "id": "th0vCbm5jns" - }, - { - "level": 3, - "id": "pY8zdMTHfW9" - } - ] + "organisationUnits": [] }, { "id": "aQ0gknbAqz8", @@ -10825,16 +14992,7 @@ "id": "OKEZCrPzqph", "shortName": "AC", "displayName": "funder-OKEZCrPzqph", - "organisationUnits": [ - { - "level": 3, - "id": "th0vCbm5jns" - }, - { - "level": 3, - "id": "pY8zdMTHfW9" - } - ] + "organisationUnits": [] }, { "id": "q0UBc5ICNsY", @@ -14450,6 +18608,10 @@ "code": "ACTUAL_TARGET_P070202", "id": "CAfOw82xb1D" }, + { + "code": "ACTUAL_TARGET_P131902", + "id": "OwO8v3YyPvu" + }, { "code": "ACTUAL_TARGET_B010200", "id": "eCufXa6RkTm" @@ -14467,20 +18629,12 @@ "id": "OUWGa7c0Rx9" }, { - "code": "ACTUAL_TARGET_B060301", - "id": "uoqYVclbKhe" - }, - { - "code": "COST_BENEFIT_B060301", - "id": "yumyhG3pJqN" - }, - { - "code": "ACTUAL_TARGET_B100800", - "id": "q2wVZPM7OQI" + "code": "ACTUAL_TARGET_B101000", + "id": "y4vC4WNmnTp" }, { - "code": "COST_BENEFIT_B100800", - "id": "CCqF3k6MAni" + "code": "COST_BENEFIT_B101000", + "id": "GISYwE82yt2" }, { "code": "ACTUAL_TARGET_B100001", @@ -14491,12 +18645,12 @@ "id": "yqaEpfBiMIj" }, { - "code": "ACTUAL_TARGET_B030007", - "id": "qAk5SbFO5Uo" + "code": "ACTUAL_TARGET_B030009", + "id": "GKGqzI2dc7p" }, { - "code": "COST_BENEFIT_B030007", - "id": "qeKp7hdhZFf" + "code": "COST_BENEFIT_B030009", + "id": "Oe8t6Ok75pQ" }, { "code": "ACTUAL_TARGET_P040209", @@ -14511,8 +18665,12 @@ "id": "qmID2wtezxA" }, { - "code": "ACTUAL_TARGET_P070001", - "id": "G2SUAycvSqL" + "code": "ACTUAL_TARGET_B070002", + "id": "miUJnJcTAKc" + }, + { + "code": "COST_BENEFIT_B070002", + "id": "emIWt1OUIlO" }, { "code": "ACTUAL_TARGET_B020205", @@ -14523,12 +18681,12 @@ "id": "eOIzu4VfyVF" }, { - "code": "ACTUAL_TARGET_B080801", - "id": "mUWOuJM0LW6" + "code": "ACTUAL_TARGET_B081201", + "id": "mo2fRrJFa6q" }, { - "code": "COST_BENEFIT_B080801", - "id": "muUmHAAVOu4" + "code": "COST_BENEFIT_B081201", + "id": "KoyuIm352Xz" }, { "code": "ACTUAL_TARGET_B030101", @@ -14547,20 +18705,20 @@ "id": "SayqcOInFi7" }, { - "code": "ACTUAL_TARGET_B030702", - "id": "SECWpF7S3Cn" + "code": "ACTUAL_TARGET_B030802", + "id": "a6ua9fmHX46" }, { - "code": "COST_BENEFIT_B030702", - "id": "ai0eV1yYst8" + "code": "COST_BENEFIT_B030802", + "id": "eyIRNRszTju" }, { - "code": "ACTUAL_TARGET_B060310", - "id": "KEuCF9UB6w4" + "code": "ACTUAL_TARGET_B131602", + "id": "WUQ5MlYNuVT" }, { - "code": "COST_BENEFIT_B060310", - "id": "WScVxR3Se6j" + "code": "COST_BENEFIT_B131602", + "id": "aiymU4FRW0Q" }, { "code": "ACTUAL_TARGET_B010306", @@ -14590,13 +18748,17 @@ "code": "ACTUAL_TARGET_P070203", "id": "GiCk8mLTfNs" }, + { + "code": "ACTUAL_TARGET_P132000", + "id": "aWhj5Q9Ga1o" + }, { "code": "ACTUAL_TARGET_P090202", "id": "qiEdUlhBPAY" }, { - "code": "ACTUAL_TARGET_P070005", - "id": "CqURW24bmHJ" + "code": "ACTUAL_TARGET_P070006", + "id": "m6SBM85Sw05" }, { "code": "ACTUAL_TARGET_P090200", @@ -14626,6 +18788,10 @@ "code": "ACTUAL_TARGET_P040503", "id": "uSmKvqO8vEf" }, + { + "code": "ACTUAL_TARGET_P060601", + "id": "CwcZ5I0OSyv" + }, { "code": "ACTUAL_TARGET_P090201", "id": "eWUd4S3wY3I" @@ -14647,8 +18813,12 @@ "id": "uE66Kfyemds" }, { - "code": "ACTUAL_TARGET_B030002", - "id": "yauqt2HtHrX" + "code": "ACTUAL_TARGET_B030003", + "id": "yS6iXBwVs6a" + }, + { + "code": "ACTUAL_TARGET_B130010", + "id": "aGP0Y7sC72u" }, { "code": "ACTUAL_TARGET_B070300", @@ -14663,120 +18833,164 @@ "id": "i6E2L5eCz77" }, { - "code": "COST_BENEFIT_B070500", - "id": "iGMzHbiTc8v" + "code": "ACTUAL_TARGET_B132100", + "id": "SwHZcLhV30G" + }, + { + "code": "COST_BENEFIT_B132100", + "id": "moiy2r2P6Sp" }, { "code": "ACTUAL_TARGET_P070201", "id": "KeG8yvix5AW" }, { - "code": "ACTUAL_TARGET_P070200", - "id": "iqeoitajbyG" + "code": "ACTUAL_TARGET_P131901", + "id": "WM2Tx7rkQJg" }, { - "code": "ACTUAL_TARGET_B080804", - "id": "SSohQ0DmndD" + "code": "ACTUAL_TARGET_P070200", + "id": "iqeoitajbyG" }, { - "code": "COST_BENEFIT_B080804", - "id": "eEi4woHnKcz" + "code": "ACTUAL_TARGET_P131900", + "id": "OQGS1xlhox0" }, { - "code": "ACTUAL_TARGET_B060304", - "id": "iSoL3P4KrcZ" + "code": "ACTUAL_TARGET_B081204", + "id": "yUwLlrOmBHT" }, { - "code": "COST_BENEFIT_B060304", - "id": "CEMNabYiBOC" + "code": "COST_BENEFIT_B081204", + "id": "qQd74N1CCmm" }, { "code": "ACTUAL_TARGET_P010110", "id": "CmamEjf3pfK" }, { - "code": "ACTUAL_TARGET_B060400", - "id": "OKA9SumZy4b" + "code": "ACTUAL_TARGET_B060503", + "id": "imyIDfcEZmD" }, { - "code": "COST_BENEFIT_B060400", - "id": "q0moaMKRN13" + "code": "COST_BENEFIT_B060503", + "id": "WeKXqWYTAGm" }, { - "code": "ACTUAL_TARGET_B030003", - "id": "yS6iXBwVs6a" + "code": "ACTUAL_TARGET_B060511", + "id": "WGIfEOOk9OK" }, { - "code": "COST_BENEFIT_B030003", - "id": "S8sXS2Lp8JY" + "code": "COST_BENEFIT_B060511", + "id": "Ki02FsBbhH6" }, { - "code": "ACTUAL_TARGET_P040401", - "id": "qiiu8QGua19" + "code": "ACTUAL_TARGET_B060505", + "id": "Seq8JsJ6yWv" }, { - "code": "ACTUAL_TARGET_B081101", - "id": "mkwPpcXVxVu" + "code": "COST_BENEFIT_B060505", + "id": "CAE1ZWJksQC" }, { - "code": "COST_BENEFIT_B081101", - "id": "WAI7hXTJNPy" + "code": "ACTUAL_TARGET_B060508", + "id": "eiYF4cIa9SE" }, { - "code": "ACTUAL_TARGET_B060307", - "id": "yCyi6SaEEPn" + "code": "COST_BENEFIT_B060508", + "id": "CiMnf5d4LRW" }, { - "code": "COST_BENEFIT_B060307", - "id": "WYwbNPLsOZI" + "code": "ACTUAL_TARGET_B060506", + "id": "OoglayxKyOG" }, { - "code": "ACTUAL_TARGET_B060305", - "id": "qKCKBgWyzUd" + "code": "COST_BENEFIT_B060506", + "id": "i8c7Zp4I6dy" }, { - "code": "COST_BENEFIT_B060305", - "id": "mawVsY3Prrm" + "code": "ACTUAL_TARGET_B060507", + "id": "ugsN6VL9tSQ" }, { - "code": "ACTUAL_TARGET_B060306", - "id": "WUvQDIMv1ub" + "code": "COST_BENEFIT_B060507", + "id": "WqCq5jzLaBW" }, { - "code": "COST_BENEFIT_B060306", - "id": "OcKS79LKW5L" + "code": "ACTUAL_TARGET_B060510", + "id": "eqUxsiGAAe3" }, { - "code": "ACTUAL_TARGET_B060309", - "id": "WokNtolvWM0" + "code": "COST_BENEFIT_B060510", + "id": "eg00sMOKe87" }, { - "code": "COST_BENEFIT_B060309", - "id": "KOUrDjUAiBq" + "code": "ACTUAL_TARGET_B060509", + "id": "OOwdnYA20Il" }, { - "code": "ACTUAL_TARGET_B060308", - "id": "SUIdteNqJSB" + "code": "COST_BENEFIT_B060509", + "id": "OKC83MMbpcm" }, { - "code": "COST_BENEFIT_B060308", - "id": "uWeCfBXwF0U" + "code": "ACTUAL_TARGET_B060504", + "id": "ewesyduGQq1" }, { - "code": "ACTUAL_TARGET_B060303", - "id": "akgrmQWNyV5" + "code": "COST_BENEFIT_B060504", + "id": "SSAn6YOkcXa" }, { - "code": "COST_BENEFIT_B060303", - "id": "u2ey62rfWQy" + "code": "ACTUAL_TARGET_B060502", + "id": "SsOElgmKMw1" + }, + { + "code": "COST_BENEFIT_B060502", + "id": "eCMNqZxntA4" + }, + { + "code": "ACTUAL_TARGET_B130400", + "id": "GSgcxFdsEPX" + }, + { + "code": "COST_BENEFIT_B130400", + "id": "ye27ddvy4M5" + }, + { + "code": "ACTUAL_TARGET_B060500", + "id": "OsOyKiiFBnI" + }, + { + "code": "COST_BENEFIT_B060500", + "id": "qgklT5eemEb" + }, + { + "code": "ACTUAL_TARGET_B030004", + "id": "KONpVCT7O8N" }, { - "code": "ACTUAL_TARGET_B060401", - "id": "Cg6XSrO5bLy" + "code": "ACTUAL_TARGET_P040401", + "id": "qiiu8QGua19" + }, + { + "code": "ACTUAL_TARGET_B081501", + "id": "OS34Uf6QQBA" + }, + { + "code": "COST_BENEFIT_B081501", + "id": "CodGVVS1GDI" + }, + { + "code": "ACTUAL_TARGET_B060501", + "id": "m0kTio0UzGZ" }, { - "code": "COST_BENEFIT_B060401", - "id": "eWQTOTj2O0D" + "code": "COST_BENEFIT_B060501", + "id": "GquSl4I0RJp" + }, + { + "code": "ACTUAL_TARGET_P130005", + "id": "eIqA1o3WeV1" }, { "code": "ACTUAL_TARGET_B040001", @@ -14807,17 +19021,21 @@ "id": "uqCevGWx4xa" }, { - "code": "ACTUAL_TARGET_B070003", - "id": "SEqSUyqYCbN" + "code": "ACTUAL_TARGET_B070004", + "id": "qQsafE8eZQt" }, { - "code": "COST_BENEFIT_B070003", - "id": "a8ms8DH1cBO" + "code": "COST_BENEFIT_B070004", + "id": "OweK3GBl0B6" }, { "code": "ACTUAL_TARGET_P060101", "id": "Sgum9KhbPCl" }, + { + "code": "ACTUAL_TARGET_P130801", + "id": "ewKuXPvbpI8" + }, { "code": "ACTUAL_TARGET_B020210", "id": "qcI12aprWyB" @@ -14858,6 +19076,18 @@ "code": "COST_BENEFIT_B020202", "id": "OOaaKMhG3G3" }, + { + "code": "ACTUAL_TARGET_P130002", + "id": "am62wkJomgx" + }, + { + "code": "ACTUAL_TARGET_B132300", + "id": "Cu6Zd1HeBAP" + }, + { + "code": "COST_BENEFIT_B132300", + "id": "iOIV40lbKOP" + }, { "code": "ACTUAL_TARGET_P100301", "id": "m4s3ebVo0GL" @@ -14883,13 +19113,29 @@ "id": "WoATQG6LF3U" }, { - "code": "ACTUAL_TARGET_B030006", - "id": "Guimte9v2V3" + "code": "ACTUAL_TARGET_B030007", + "id": "qAk5SbFO5Uo" + }, + { + "code": "COST_BENEFIT_B030007", + "id": "qeKp7hdhZFf" + }, + { + "code": "ACTUAL_TARGET_B130013", + "id": "mQ0aJyjhi0y" + }, + { + "code": "COST_BENEFIT_B130013", + "id": "mownJaUarGH" }, { "code": "ACTUAL_TARGET_P060100", "id": "ye2hcm1bWP0" }, + { + "code": "ACTUAL_TARGET_P130800", + "id": "C8msaFbBd6N" + }, { "code": "ACTUAL_TARGET_B060201", "id": "SmemhG2d6Lw" @@ -14898,6 +19144,10 @@ "code": "ACTUAL_TARGET_B060200", "id": "u86S5tdSNdv" }, + { + "code": "ACTUAL_TARGET_B130100", + "id": "iwiQl4JX7cm" + }, { "code": "ACTUAL_TARGET_P040400", "id": "eGUHzkldi7E" @@ -14915,40 +19165,56 @@ "id": "q2kPKe35bPD" }, { - "code": "ACTUAL_TARGET_B030203", - "id": "G8MLFBebol1" + "code": "ACTUAL_TARGET_B030303", + "id": "WmOgd0aYYrP" + }, + { + "code": "COST_BENEFIT_B030303", + "id": "ieCsiXx2ogg" }, { - "code": "COST_BENEFIT_B030203", - "id": "GsMtI7ALdoU" + "code": "ACTUAL_TARGET_P130807", + "id": "iq02k7RWFw4" }, { - "code": "ACTUAL_TARGET_B030201", - "id": "Sik5UrG06x2" + "code": "ACTUAL_TARGET_B130006", + "id": "eCaOCAEJoT6" }, { - "code": "COST_BENEFIT_B030201", - "id": "SiAhz4plEau" + "code": "ACTUAL_TARGET_B030301", + "id": "aES2CcNZDej" }, { - "code": "ACTUAL_TARGET_B030401", - "id": "aiExnEtzoos" + "code": "COST_BENEFIT_B030301", + "id": "GES6GLcit9R" }, { - "code": "COST_BENEFIT_B030401", - "id": "GSOA57hjSsv" + "code": "ACTUAL_TARGET_B030501", + "id": "G4OOGpCk9qv" + }, + { + "code": "COST_BENEFIT_B030501", + "id": "SsslpIArl83" }, { "code": "ACTUAL_TARGET_P040202", "id": "qsoLFFsgH1C" }, { - "code": "ACTUAL_TARGET_B030704", - "id": "icwPvtoCGoZ" + "code": "ACTUAL_TARGET_B030804", + "id": "CeErNF0LZUg" + }, + { + "code": "COST_BENEFIT_B030804", + "id": "G22DL0PCxJC" }, { - "code": "COST_BENEFIT_B030704", - "id": "G225rEGlEwH" + "code": "ACTUAL_TARGET_B131604", + "id": "K0q4iTsrEzA" + }, + { + "code": "COST_BENEFIT_B131604", + "id": "q6MJP3xip1m" }, { "code": "ACTUAL_TARGET_B020204", @@ -14959,101 +19225,273 @@ "id": "aCqEtw03KXx" }, { - "code": "ACTUAL_TARGET_B060600", - "id": "Co40g63Xuc6" + "code": "ACTUAL_TARGET_B060700", + "id": "y2wJqrHZmpn" }, { - "code": "COST_BENEFIT_B060600", - "id": "KO25ReAjCrE" + "code": "COST_BENEFIT_B060700", + "id": "Ogqsx1oF1QY" }, { "code": "ACTUAL_TARGET_P040108", "id": "Sos5uiNMpLA" }, { - "code": "ACTUAL_TARGET_B060900", - "id": "mCKAsDyCi8B" + "code": "ACTUAL_TARGET_B061001", + "id": "SGU9TdCk6FA" + }, + { + "code": "COST_BENEFIT_B061001", + "id": "eM8Dbj30x4J" + }, + { + "code": "ACTUAL_TARGET_B061010", + "id": "qIeO3IJMD4z" + }, + { + "code": "COST_BENEFIT_B061010", + "id": "aSA3B42z0jl" + }, + { + "code": "ACTUAL_TARGET_B061004", + "id": "yA6BCN7O20f" + }, + { + "code": "COST_BENEFIT_B061004", + "id": "Kg4A2lwaGjY" + }, + { + "code": "ACTUAL_TARGET_B061007", + "id": "OysjWuPZc5Z" + }, + { + "code": "COST_BENEFIT_B061007", + "id": "yoakXLQkKZM" + }, + { + "code": "ACTUAL_TARGET_B061005", + "id": "qmUU5aRb2co" + }, + { + "code": "COST_BENEFIT_B061005", + "id": "eiSmFx3EOA2" + }, + { + "code": "ACTUAL_TARGET_B061006", + "id": "yKs5ADP5saS" + }, + { + "code": "COST_BENEFIT_B061006", + "id": "qemsqRBQ0NM" + }, + { + "code": "ACTUAL_TARGET_B061009", + "id": "yWWQZytmo4n" + }, + { + "code": "COST_BENEFIT_B061009", + "id": "igQLuQWChmy" + }, + { + "code": "ACTUAL_TARGET_B061008", + "id": "WAWw51FWQF7" + }, + { + "code": "COST_BENEFIT_B061008", + "id": "u86wEXsqnW1" + }, + { + "code": "ACTUAL_TARGET_B061003", + "id": "qc0KHWHxcpB" + }, + { + "code": "COST_BENEFIT_B061003", + "id": "K08nMC0cJce" + }, + { + "code": "ACTUAL_TARGET_B061000", + "id": "ug0GPFisudW" + }, + { + "code": "COST_BENEFIT_B061000", + "id": "eEKe9akKXT2" + }, + { + "code": "ACTUAL_TARGET_B061002", + "id": "SiWmmxZKRNL" + }, + { + "code": "COST_BENEFIT_B061002", + "id": "KiwrygQeG34" + }, + { + "code": "ACTUAL_TARGET_B130600", + "id": "OQWygmstHoj" + }, + { + "code": "COST_BENEFIT_B130600", + "id": "e0Aj7frI6Rs" + }, + { + "code": "ACTUAL_TARGET_B030803", + "id": "SykxGePkIEt" + }, + { + "code": "COST_BENEFIT_B030803", + "id": "CA6AgEqAQia" + }, + { + "code": "ACTUAL_TARGET_B131603", + "id": "yGyYlUiPx2G" + }, + { + "code": "COST_BENEFIT_B131603", + "id": "O0Kq5eP4mcG" + }, + { + "code": "ACTUAL_TARGET_B030502", + "id": "ye2OvZOrux0" + }, + { + "code": "COST_BENEFIT_B030502", + "id": "msKq9EWROFu" + }, + { + "code": "ACTUAL_TARGET_B030304", + "id": "CmUVU3N6oHP" + }, + { + "code": "COST_BENEFIT_B030304", + "id": "a40iXpjr9ll" + }, + { + "code": "ACTUAL_TARGET_B081500", + "id": "isKcihOpMrF" + }, + { + "code": "COST_BENEFIT_B081500", + "id": "S0WcN8Pruxs" + }, + { + "code": "ACTUAL_TARGET_B010204", + "id": "ewYH6W9w5xR" + }, + { + "code": "ACTUAL_TARGET_B040300", + "id": "mOaAKtZbNhm" + }, + { + "code": "ACTUAL_TARGET_B030801", + "id": "aey6dargt2n" + }, + { + "code": "COST_BENEFIT_B030801", + "id": "WcimOwIb1yV" + }, + { + "code": "ACTUAL_TARGET_B131601", + "id": "OqesWH9URoK" + }, + { + "code": "COST_BENEFIT_B131601", + "id": "aOYx1GkZBwy" + }, + { + "code": "ACTUAL_TARGET_B010004", + "id": "yIOkHtPbZlA" + }, + { + "code": "ACTUAL_TARGET_B081203", + "id": "aeK2RsFE99f" + }, + { + "code": "COST_BENEFIT_B081203", + "id": "aek1LeDPXAU" }, { - "code": "COST_BENEFIT_B060900", - "id": "KiUHwiUxpU8" + "code": "ACTUAL_TARGET_B030500", + "id": "WgGgLJl9VVW" }, { - "code": "ACTUAL_TARGET_B030703", - "id": "SuWsf6w9DLz" + "code": "COST_BENEFIT_B030500", + "id": "aMuauUGOKxd" }, { - "code": "COST_BENEFIT_B030703", - "id": "SicZ1LgzlRl" + "code": "ACTUAL_TARGET_B131300", + "id": "GAo1N41t2DM" }, { - "code": "ACTUAL_TARGET_B030402", - "id": "u4aaHxpddr4" + "code": "COST_BENEFIT_B131300", + "id": "CckRL7NKoxr" }, { - "code": "COST_BENEFIT_B030402", - "id": "mA2rJuzbkZI" + "code": "ACTUAL_TARGET_P060910", + "id": "GCsOxE2bqnO" }, { - "code": "ACTUAL_TARGET_B030204", - "id": "O647TFMZ7IA" + "code": "ACTUAL_TARGET_P060908", + "id": "WigtOIfGqaA" }, { - "code": "COST_BENEFIT_B030204", - "id": "yEqiE1KZXCO" + "code": "ACTUAL_TARGET_P060907", + "id": "GqachoSRUMT" }, { - "code": "ACTUAL_TARGET_B081100", - "id": "mW0YgDGj9BW" + "code": "ACTUAL_TARGET_P060909", + "id": "OWmGjXvdaNb" }, { - "code": "COST_BENEFIT_B081100", - "id": "u6sTPycqReU" + "code": "ACTUAL_TARGET_P060905", + "id": "uaGWIRJbgBY" }, { - "code": "ACTUAL_TARGET_B010204", - "id": "ewYH6W9w5xR" + "code": "ACTUAL_TARGET_P060914", + "id": "uyyULaqOXPL" }, { - "code": "ACTUAL_TARGET_B040300", - "id": "mOaAKtZbNhm" + "code": "ACTUAL_TARGET_P060900", + "id": "aEm03M6O297" }, { - "code": "ACTUAL_TARGET_B030701", - "id": "iOGy7xPpuzl" + "code": "ACTUAL_TARGET_P060904", + "id": "Wm2z5QdwIeV" }, { - "code": "COST_BENEFIT_B030701", - "id": "WseEcbkEqRM" + "code": "ACTUAL_TARGET_P060902", + "id": "awUVeZyvcyb" }, { - "code": "ACTUAL_TARGET_B010004", - "id": "yIOkHtPbZlA" + "code": "ACTUAL_TARGET_P060906", + "id": "KMumfY974vM" }, { - "code": "ACTUAL_TARGET_B080803", - "id": "GmcJrpyuwWz" + "code": "ACTUAL_TARGET_P060903", + "id": "GYEOjRWeJHz" }, { - "code": "COST_BENEFIT_B080803", - "id": "q6iMJdjKYBR" + "code": "ACTUAL_TARGET_P060912", + "id": "e0qHZ8wyaPt" }, { - "code": "ACTUAL_TARGET_B030400", - "id": "GIeeBJwGIEY" + "code": "ACTUAL_TARGET_P060911", + "id": "O021DSaKDjG" }, { - "code": "COST_BENEFIT_B030400", - "id": "OgiY9Dz3S1N" + "code": "ACTUAL_TARGET_P060901", + "id": "GAYd35duO8d" }, { - "code": "ACTUAL_TARGET_P060800", - "id": "i2gVwUdOuuT" + "code": "ACTUAL_TARGET_P060913", + "id": "WmCyX7fhgcF" }, { "code": "ACTUAL_TARGET_P060106", "id": "uAT61USe7Fj" }, + { + "code": "ACTUAL_TARGET_P130806", + "id": "Wu0g7dVP0jB" + }, { "code": "ACTUAL_TARGET_B030001", "id": "yacJdzgHYxX" @@ -15062,6 +19500,14 @@ "code": "COST_BENEFIT_B030001", "id": "mWKirLtiZet" }, + { + "code": "ACTUAL_TARGET_B130008", + "id": "SW0Qa8I2D6N" + }, + { + "code": "COST_BENEFIT_B130008", + "id": "uiE9Cs82hAL" + }, { "code": "ACTUAL_TARGET_B020200", "id": "i01veyO4Cuw" @@ -15082,13 +19528,21 @@ "code": "ACTUAL_TARGET_B010202", "id": "KuQNbQm437w" }, + { + "code": "ACTUAL_TARGET_B030006", + "id": "Guimte9v2V3" + }, + { + "code": "ACTUAL_TARGET_B130012", + "id": "i6MzzxGF13t" + }, { "code": "ACTUAL_TARGET_B030005", "id": "G0kHKloW9mx" }, { - "code": "ACTUAL_TARGET_B030004", - "id": "KONpVCT7O8N" + "code": "ACTUAL_TARGET_B130011", + "id": "G8BgyG0mHup" }, { "code": "ACTUAL_TARGET_B050104", @@ -15143,16 +19597,20 @@ "id": "SUSqZUB5wfU" }, { - "code": "ACTUAL_TARGET_B100600", - "id": "S0UJSkDorkA" + "code": "ACTUAL_TARGET_P130803", + "id": "Cim8b0BbgV7" + }, + { + "code": "ACTUAL_TARGET_B100700", + "id": "aumCnCkGEuk" }, { - "code": "COST_BENEFIT_B100600", - "id": "KaCmHJD0pnd" + "code": "COST_BENEFIT_B100700", + "id": "KEusW6R3rB0" }, { - "code": "ACTUAL_TARGET_P100700", - "id": "eKcTcWII8G7" + "code": "ACTUAL_TARGET_P100900", + "id": "WmGZ5hmzytY" }, { "code": "ACTUAL_TARGET_B070700", @@ -15167,36 +19625,24 @@ "id": "yyGq1DmJ9NQ" }, { - "code": "ACTUAL_TARGET_B060402", - "id": "qMC2nWpvPZg" - }, - { - "code": "COST_BENEFIT_B060402", - "id": "KASkLMFOnYC" - }, - { - "code": "ACTUAL_TARGET_B060302", - "id": "yOqQceVypsg" - }, - { - "code": "COST_BENEFIT_B060302", - "id": "m4Cc50ETeRz" + "code": "ACTUAL_TARGET_B130004", + "id": "CqucmvHHukG" }, { - "code": "ACTUAL_TARGET_B080800", - "id": "mMWuHhqYUuH" + "code": "ACTUAL_TARGET_B081200", + "id": "qu0x94utOgv" }, { - "code": "COST_BENEFIT_B080800", - "id": "qkqyqsbqOOx" + "code": "COST_BENEFIT_B081200", + "id": "agesWg1r7Br" }, { "code": "ACTUAL_TARGET_P060102", "id": "KiozwqnIWxK" }, { - "code": "ACTUAL_TARGET_P030502", - "id": "qeqQFfb13hy" + "code": "ACTUAL_TARGET_P130802", + "id": "qcicrPkkdH7" }, { "code": "ACTUAL_TARGET_B100004", @@ -15211,17 +19657,29 @@ "id": "CoQvG46u5vQ" }, { - "code": "ACTUAL_TARGET_B030202", - "id": "WOQLVPi4yIW" + "code": "ACTUAL_TARGET_B030302", + "id": "ukpdJim0tht" + }, + { + "code": "COST_BENEFIT_B030302", + "id": "aAMTlVPzw2C" + }, + { + "code": "ACTUAL_TARGET_B030305", + "id": "WES2gTOS05G" }, { - "code": "COST_BENEFIT_B030202", - "id": "mc4zzJVjmk1" + "code": "COST_BENEFIT_B030305", + "id": "COKEX5pyfZm" }, { "code": "ACTUAL_TARGET_P060105", "id": "KkA3NMjeNGd" }, + { + "code": "ACTUAL_TARGET_P130805", + "id": "ei4CgOrbJ4C" + }, { "code": "ACTUAL_TARGET_B020211", "id": "qgC0pOTJrKR" @@ -15231,12 +19689,12 @@ "id": "eG0mt9VL1Aw" }, { - "code": "ACTUAL_TARGET_B080805", - "id": "i4joOObumqN" + "code": "ACTUAL_TARGET_B081205", + "id": "CEczmWdU3GD" }, { - "code": "COST_BENEFIT_B080805", - "id": "O8o5BfuOSTB" + "code": "COST_BENEFIT_B081205", + "id": "uaIZZVxO9VR" }, { "code": "ACTUAL_TARGET_B020212", @@ -15246,6 +19704,46 @@ "code": "COST_BENEFIT_B020212", "id": "KyETlYbLYg0" }, + { + "code": "ACTUAL_TARGET_B030110", + "id": "mCOYlCSeO22" + }, + { + "code": "COST_BENEFIT_B030110", + "id": "qmyS0Y8eEcn" + }, + { + "code": "ACTUAL_TARGET_B030111", + "id": "WABb5C34axA" + }, + { + "code": "COST_BENEFIT_B030111", + "id": "yOI9Fa9x4zs" + }, + { + "code": "ACTUAL_TARGET_B060301", + "id": "uoqYVclbKhe" + }, + { + "code": "COST_BENEFIT_B060301", + "id": "yumyhG3pJqN" + }, + { + "code": "ACTUAL_TARGET_B060310", + "id": "KEuCF9UB6w4" + }, + { + "code": "COST_BENEFIT_B060310", + "id": "WScVxR3Se6j" + }, + { + "code": "ACTUAL_TARGET_B060304", + "id": "iSoL3P4KrcZ" + }, + { + "code": "COST_BENEFIT_B060304", + "id": "CEMNabYiBOC" + }, { "code": "ACTUAL_TARGET_B060300", "id": "uYg9TzMPhds" @@ -15255,56 +19753,156 @@ "id": "eSIdr6ERa61" }, { - "code": "ACTUAL_TARGET_P030301", - "id": "uGSun3Hs9Fs" + "code": "ACTUAL_TARGET_B060307", + "id": "yCyi6SaEEPn" + }, + { + "code": "COST_BENEFIT_B060307", + "id": "WYwbNPLsOZI" + }, + { + "code": "ACTUAL_TARGET_B060305", + "id": "qKCKBgWyzUd" + }, + { + "code": "COST_BENEFIT_B060305", + "id": "mawVsY3Prrm" + }, + { + "code": "ACTUAL_TARGET_B060306", + "id": "WUvQDIMv1ub" + }, + { + "code": "COST_BENEFIT_B060306", + "id": "OcKS79LKW5L" + }, + { + "code": "ACTUAL_TARGET_B060309", + "id": "WokNtolvWM0" + }, + { + "code": "COST_BENEFIT_B060309", + "id": "KOUrDjUAiBq" + }, + { + "code": "ACTUAL_TARGET_B060308", + "id": "SUIdteNqJSB" + }, + { + "code": "COST_BENEFIT_B060308", + "id": "uWeCfBXwF0U" + }, + { + "code": "ACTUAL_TARGET_B060303", + "id": "akgrmQWNyV5" + }, + { + "code": "COST_BENEFIT_B060303", + "id": "u2ey62rfWQy" + }, + { + "code": "ACTUAL_TARGET_B060302", + "id": "yOqQceVypsg" + }, + { + "code": "COST_BENEFIT_B060302", + "id": "m4Cc50ETeRz" + }, + { + "code": "ACTUAL_TARGET_B130200", + "id": "OQItvlcTObU" + }, + { + "code": "COST_BENEFIT_B130200", + "id": "WEGOyu2eex6" + }, + { + "code": "ACTUAL_TARGET_P030200", + "id": "auAEh6gabUr" + }, + { + "code": "ACTUAL_TARGET_P131000", + "id": "mSIzame4jnS" + }, + { + "code": "ACTUAL_TARGET_P030400", + "id": "uMOCXOmsYm9" + }, + { + "code": "ACTUAL_TARGET_P131200", + "id": "a6aVr5AKB2r" + }, + { + "code": "ACTUAL_TARGET_P030002", + "id": "yMM5SkiZIoh" + }, + { + "code": "ACTUAL_TARGET_P130009", + "id": "iQofsRIJTv2" }, { - "code": "ACTUAL_TARGET_P030302", - "id": "qKIopIKD8XT" + "code": "ACTUAL_TARGET_P030201", + "id": "usS6MLWCABj" }, { - "code": "ACTUAL_TARGET_P030312", - "id": "OwsJR09UTtR" + "code": "ACTUAL_TARGET_P030202", + "id": "Ow4fArkGROw" }, { - "code": "ACTUAL_TARGET_P030310", - "id": "yiOkRERiSnx" + "code": "ACTUAL_TARGET_P030403", + "id": "CKUjV5Oy6Am" }, { - "code": "ACTUAL_TARGET_P030313", - "id": "q0YdrcesNPe" + "code": "ACTUAL_TARGET_P030401", + "id": "ySquuoNBEtJ" }, { - "code": "ACTUAL_TARGET_P030311", - "id": "mqWagIrMoM1" + "code": "ACTUAL_TARGET_P030404", + "id": "uu264x2NPGG" }, { - "code": "ACTUAL_TARGET_P030308", - "id": "Wy8FcFknctf" + "code": "ACTUAL_TARGET_P030402", + "id": "ysfsen6sUvA" }, { - "code": "ACTUAL_TARGET_P030307", - "id": "ycKgOLvyN8U" + "code": "ACTUAL_TARGET_P030405", + "id": "SQ6xRgvh84P" }, { - "code": "ACTUAL_TARGET_P030303", - "id": "qEUVMlQCSki" + "code": "ACTUAL_TARGET_P030210", + "id": "qCGCelfn0m0" }, { - "code": "ACTUAL_TARGET_P030304", - "id": "uqqQzTX0D6w" + "code": "ACTUAL_TARGET_P030211", + "id": "a8YvgGcBV2q" }, { - "code": "ACTUAL_TARGET_P030306", - "id": "eSABfWGT7Tt" + "code": "ACTUAL_TARGET_P030208", + "id": "WuqMX2x8Wat" }, { - "code": "ACTUAL_TARGET_P030305", - "id": "ukECIX45rqQ" + "code": "ACTUAL_TARGET_P030207", + "id": "GgemVpVM0Aa" }, { - "code": "ACTUAL_TARGET_P030309", - "id": "KOZh48R8uoH" + "code": "ACTUAL_TARGET_P030203", + "id": "C6CbdRoig8n" + }, + { + "code": "ACTUAL_TARGET_P030204", + "id": "CeeOHZyLjDX" + }, + { + "code": "ACTUAL_TARGET_P030206", + "id": "iYIJd1kJ2vX" + }, + { + "code": "ACTUAL_TARGET_P030205", + "id": "a6JD7L5gOQd" + }, + { + "code": "ACTUAL_TARGET_P030209", + "id": "CCGmcOqgjP6" }, { "code": "ACTUAL_TARGET_P120202", @@ -15327,49 +19925,61 @@ "id": "KwWwR5EPR1U" }, { - "code": "ACTUAL_TARGET_P070004", - "id": "iyEpv7Nx6CG" + "code": "ACTUAL_TARGET_P070005", + "id": "CqURW24bmHJ" }, { - "code": "ACTUAL_TARGET_P060810", - "id": "uUKEW4pxQ4d" + "code": "ACTUAL_TARGET_P030010", + "id": "iaMHpsVyvEO" }, { "code": "ACTUAL_TARGET_P070400", "id": "KcW2l2uB8S7" }, { - "code": "ACTUAL_TARGET_P081201", - "id": "uwktvYQPa9X" + "code": "ACTUAL_TARGET_P081601", + "id": "yGOkrvgimmg" }, { "code": "ACTUAL_TARGET_P030008", "id": "Kye4ay1rIak" }, { - "code": "ACTUAL_TARGET_P081200", - "id": "uYIF5ZrMOOo" + "code": "ACTUAL_TARGET_P130014", + "id": "SYIJTvhH1gV" + }, + { + "code": "ACTUAL_TARGET_P081600", + "id": "iewd6jLYV4H" }, { - "code": "ACTUAL_TARGET_P080502", - "id": "G2kt4n6sYpK" + "code": "ACTUAL_TARGET_P080202", + "id": "esOOUvMXWEm" }, { - "code": "ACTUAL_TARGET_P080503", - "id": "ikIlbn8UX8F" + "code": "ACTUAL_TARGET_P080201", + "id": "yUicXQq8gip" }, { - "code": "ACTUAL_TARGET_P060808", - "id": "qaIXC62YHWY" + "code": "ACTUAL_TARGET_P080203", + "id": "WuewYeh98PD" }, { - "code": "ACTUAL_TARGET_P030603", - "id": "We2r9FZaTNI" + "code": "ACTUAL_TARGET_P130016", + "id": "mSIpNw0Dkey" + }, + { + "code": "ACTUAL_TARGET_P030703", + "id": "aCcn6gj9s9n" }, { "code": "ACTUAL_TARGET_P070600", "id": "K6ipXoSOmt2" }, + { + "code": "ACTUAL_TARGET_P132200", + "id": "W4KW9flTmui" + }, { "code": "ACTUAL_TARGET_P010002", "id": "mumOO4Pvvt5" @@ -15394,6 +20004,10 @@ "code": "ACTUAL_TARGET_P070900", "id": "qgGwMTqEq4d" }, + { + "code": "ACTUAL_TARGET_P131800", + "id": "aya2JWPV9Z4" + }, { "code": "ACTUAL_TARGET_P070103", "id": "mkSEAPFPvab" @@ -15403,116 +20017,124 @@ "id": "CO829gIxf1B" }, { - "code": "ACTUAL_TARGET_P100702", - "id": "KaIhnjSwn4R" + "code": "ACTUAL_TARGET_P100800", + "id": "u2kxf7Qik7Q" }, { - "code": "ACTUAL_TARGET_P100701", - "id": "yoYRjpuh5XD" + "code": "ACTUAL_TARGET_P100600", + "id": "qOQDjYBTvsl" }, { - "code": "ACTUAL_TARGET_P081002", - "id": "yYO5resUg3t" + "code": "ACTUAL_TARGET_P081402", + "id": "eyc9vaVbwdk" }, { "code": "ACTUAL_TARGET_P010400", "id": "OoZs4zOZElD" }, { - "code": "ACTUAL_TARGET_P060501", - "id": "aS4ZFkLIL2T" - }, - { - "code": "ACTUAL_TARGET_P080505", - "id": "eUILy6xBhGb" + "code": "ACTUAL_TARGET_P080600", + "id": "y2a0xhWkVlT" }, { "code": "ACTUAL_TARGET_P020305", "id": "qUmOpk9AFo7" }, { - "code": "ACTUAL_TARGET_P080901", - "id": "CgZiKmsjJWg" + "code": "ACTUAL_TARGET_P081301", + "id": "eguYGwY4jYn" }, { - "code": "ACTUAL_TARGET_P030802", - "id": "a0yxmAFB36l" + "code": "ACTUAL_TARGET_P030902", + "id": "OAmGHmOKV8h" }, { - "code": "ACTUAL_TARGET_P060510", - "id": "ySOqCcRwMNP" + "code": "ACTUAL_TARGET_P131702", + "id": "WcK1urgMPuh" }, { "code": "ACTUAL_TARGET_P010406", "id": "GK0O19uEMbc" }, { - "code": "ACTUAL_TARGET_P080903", - "id": "y2srC5MMaM9" + "code": "ACTUAL_TARGET_P081303", + "id": "GmGoryyyVPc" }, { - "code": "ACTUAL_TARGET_P060504", - "id": "uqWCWDUDe6C" + "code": "ACTUAL_TARGET_P060603", + "id": "SMW8EioJMFs" }, { - "code": "ACTUAL_TARGET_P060512", - "id": "SYGEju1MLx0" + "code": "ACTUAL_TARGET_P060611", + "id": "mCUUVFEiOEi" }, { - "code": "ACTUAL_TARGET_P020306", - "id": "GcIphQryA24" + "code": "ACTUAL_TARGET_P060605", + "id": "CY68TpILUDk" }, { - "code": "ACTUAL_TARGET_P020307", - "id": "qEobhlKDN37" + "code": "ACTUAL_TARGET_P060608", + "id": "eGeuh3XaZo9" }, { - "code": "ACTUAL_TARGET_P020308", - "id": "aou6Q6T3m03" + "code": "ACTUAL_TARGET_P060606", + "id": "uobjKRh4eEp" + }, + { + "code": "ACTUAL_TARGET_P060607", + "id": "iE7gIgXVSKk" + }, + { + "code": "ACTUAL_TARGET_P060610", + "id": "yIy886n1Fha" }, { - "code": "ACTUAL_TARGET_P060507", - "id": "yMYAZnnIK3a" + "code": "ACTUAL_TARGET_P060609", + "id": "eC0Gnv5YCGP" }, { - "code": "ACTUAL_TARGET_P060505", - "id": "uiYZhEFvcCH" + "code": "ACTUAL_TARGET_P060604", + "id": "yckVz4TkmPf" }, { - "code": "ACTUAL_TARGET_P060506", - "id": "q4KedjQtEEQ" + "code": "ACTUAL_TARGET_P060602", + "id": "aoQdJDgg5Tt" }, { - "code": "ACTUAL_TARGET_P060509", - "id": "m4EzE5KMxlw" + "code": "ACTUAL_TARGET_P130500", + "id": "iakrav8ShVE" }, { - "code": "ACTUAL_TARGET_P060508", - "id": "uGeY6t8rkXe" + "code": "ACTUAL_TARGET_P060600", + "id": "iq6SRg5pfEH" }, { - "code": "ACTUAL_TARGET_P060503", - "id": "yWS89yzFWJ1" + "code": "ACTUAL_TARGET_P020306", + "id": "GcIphQryA24" + }, + { + "code": "ACTUAL_TARGET_P020307", + "id": "qEobhlKDN37" }, { - "code": "ACTUAL_TARGET_P060511", - "id": "yUqaIi2KnST" + "code": "ACTUAL_TARGET_P020308", + "id": "aou6Q6T3m03" }, { "code": "ACTUAL_TARGET_P010403", "id": "OAADYpywgEC" }, { - "code": "ACTUAL_TARGET_P080507", - "id": "eI6vCcQhxML" + "code": "ACTUAL_TARGET_P080901", + "id": "CgZiKmsjJWg" }, { - "code": "ACTUAL_TARGET_P080500", - "id": "Cus1hL1lCOe" + "code": "ACTUAL_TARGET_P080900", + "id": "yyG0kswH4E5" }, { - "code": "ACTUAL_TARGET_P081000", - "id": "qiwjpoHZH7d" + "code": "ACTUAL_TARGET_P081400", + "id": "y6QZmNym72U" }, { "code": "ACTUAL_TARGET_P020310", @@ -15539,8 +20161,12 @@ "id": "OoKQ0Kc2MKO" }, { - "code": "ACTUAL_TARGET_P081003", - "id": "C2mQuazXShw" + "code": "ACTUAL_TARGET_P132400", + "id": "igc1Ne9mO3Y" + }, + { + "code": "ACTUAL_TARGET_P081403", + "id": "Cwq2v1Qec8H" }, { "code": "ACTUAL_TARGET_P050201", @@ -15555,64 +20181,164 @@ "id": "Gs8li5LpXrE" }, { - "code": "ACTUAL_TARGET_P030804", - "id": "my6xLWNouGA" + "code": "ACTUAL_TARGET_P030904", + "id": "WyIrqq9KHkg" + }, + { + "code": "ACTUAL_TARGET_P131704", + "id": "SCsqhW4Q90I" }, { "code": "ACTUAL_TARGET_P020304", "id": "um4tjIsTngP" }, { - "code": "ACTUAL_TARGET_P030803", - "id": "u4Axfmi8dt4" + "code": "ACTUAL_TARGET_P061101", + "id": "iAy0jLch7ga" + }, + { + "code": "ACTUAL_TARGET_P061110", + "id": "aiE7C17bZS0" + }, + { + "code": "ACTUAL_TARGET_P061104", + "id": "iKopgb3vVye" + }, + { + "code": "ACTUAL_TARGET_P061100", + "id": "uOOm6Bt4NDR" + }, + { + "code": "ACTUAL_TARGET_P061107", + "id": "ysyqU9YcetR" + }, + { + "code": "ACTUAL_TARGET_P061105", + "id": "qq0KLgEVXAj" + }, + { + "code": "ACTUAL_TARGET_P061106", + "id": "iaoRK98VM9m" + }, + { + "code": "ACTUAL_TARGET_P061109", + "id": "KkURKXgJGQ9" + }, + { + "code": "ACTUAL_TARGET_P061108", + "id": "mI2jFo2F1qi" + }, + { + "code": "ACTUAL_TARGET_P061103", + "id": "yCOOcOjb5nl" + }, + { + "code": "ACTUAL_TARGET_P061102", + "id": "O88WplGlsGl" + }, + { + "code": "ACTUAL_TARGET_P130700", + "id": "aQcJvwTOzfK" + }, + { + "code": "ACTUAL_TARGET_P030903", + "id": "miAL3lhkd2A" + }, + { + "code": "ACTUAL_TARGET_P131703", + "id": "Sm8EwGnZyNm" }, { - "code": "ACTUAL_TARGET_P030801", - "id": "iAYfqLFUcnR" + "code": "ACTUAL_TARGET_P030901", + "id": "GeCZ7qu30Kk" }, { - "code": "ACTUAL_TARGET_P080904", - "id": "qWoVIOoqIkm" + "code": "ACTUAL_TARGET_P131701", + "id": "CKkrgYqxKfZ" + }, + { + "code": "ACTUAL_TARGET_P081304", + "id": "aaEZuRbiMuz" }, { "code": "ACTUAL_TARGET_P020300", "id": "K4sH0aQDdeL" }, { - "code": "ACTUAL_TARGET_P080900", - "id": "yyG0kswH4E5" + "code": "ACTUAL_TARGET_P081300", + "id": "yeQN47GFqwM" + }, + { + "code": "ACTUAL_TARGET_P050202", + "id": "W0AdDg4kKiL" + }, + { + "code": "ACTUAL_TARGET_P010407", + "id": "eUWANgd7xDO" + }, + { + "code": "ACTUAL_TARGET_P081305", + "id": "aG0Gz5UTNrX" + }, + { + "code": "ACTUAL_TARGET_P100902", + "id": "iMqALgnRtf8" + }, + { + "code": "ACTUAL_TARGET_P020311", + "id": "yYWEdY7XXB8" + }, + { + "code": "ACTUAL_TARGET_P020312", + "id": "Og0e7ViG5yT" + }, + { + "code": "ACTUAL_TARGET_P060401", + "id": "KyiYbVmHdHi" + }, + { + "code": "ACTUAL_TARGET_P060410", + "id": "yCUhOmjfrTi" + }, + { + "code": "ACTUAL_TARGET_P060404", + "id": "SQW6pg7sYfH" + }, + { + "code": "ACTUAL_TARGET_P060407", + "id": "uQK0vu84Gpg" }, { - "code": "ACTUAL_TARGET_P050202", - "id": "W0AdDg4kKiL" + "code": "ACTUAL_TARGET_P060405", + "id": "SEjjQOvo4uM" }, { - "code": "ACTUAL_TARGET_P010407", - "id": "eUWANgd7xDO" + "code": "ACTUAL_TARGET_P060406", + "id": "WoacfbMg5rG" }, { - "code": "ACTUAL_TARGET_P100704", - "id": "KaeI2dEPPnQ" + "code": "ACTUAL_TARGET_P060409", + "id": "ugesquC1zMx" }, { - "code": "ACTUAL_TARGET_P020311", - "id": "yYWEdY7XXB8" + "code": "ACTUAL_TARGET_P060408", + "id": "O043TsRG9O3" }, { - "code": "ACTUAL_TARGET_P080905", - "id": "SOaU2NPEne6" + "code": "ACTUAL_TARGET_P060403", + "id": "CQekHE93fQg" }, { - "code": "ACTUAL_TARGET_P020312", - "id": "Og0e7ViG5yT" + "code": "ACTUAL_TARGET_P060402", + "id": "GIaywzxvcdZ" }, { - "code": "ACTUAL_TARGET_P060502", - "id": "SuSI67FHYjc" + "code": "ACTUAL_TARGET_P130300", + "id": "qauqf9A0Dqn" }, { - "code": "ACTUAL_TARGET_P080700", - "id": "aa2b5rlOoYD" + "code": "ACTUAL_TARGET_P081100", + "id": "GUgdk4ZZ4cB" }, { "code": "ACTUAL_TARGET_P010402", @@ -15623,8 +20349,8 @@ "id": "K2ADN2EmEmr" }, { - "code": "ACTUAL_TARGET_P100703", - "id": "GYghyAJ0R9X" + "code": "ACTUAL_TARGET_P100901", + "id": "Oe2mhTBKiEc" }, { "code": "ACTUAL_TARGET_P050205", @@ -15635,24 +20361,24 @@ "id": "Ok4kt7BTaJF" }, { - "code": "ACTUAL_TARGET_P080902", - "id": "CcCcW1VEXio" + "code": "ACTUAL_TARGET_P081302", + "id": "Ks4zlFNAIFo" }, { - "code": "ACTUAL_TARGET_P081001", - "id": "yIWmOFnLJ5m" + "code": "ACTUAL_TARGET_P081401", + "id": "CiwhzDi6uhO" }, { - "code": "ACTUAL_TARGET_P080501", - "id": "iG2h0x9mrrG" + "code": "ACTUAL_TARGET_P080200", + "id": "qE0gQ8Gu0QM" }, { - "code": "ACTUAL_TARGET_P080506", - "id": "euOxysOdqIC" + "code": "ACTUAL_TARGET_P080800", + "id": "qqGM77gMUI2" }, { - "code": "ACTUAL_TARGET_P080504", - "id": "ms0t17sYh8t" + "code": "ACTUAL_TARGET_P080400", + "id": "GEEVKwDaloa" }, { "code": "ACTUAL_TARGET_P020301", @@ -15663,8 +20389,16 @@ "id": "CoisprDIrV4" }, { - "code": "ACTUAL_TARGET_P030800", - "id": "CwewjwY8kM6" + "code": "ACTUAL_TARGET_P030900", + "id": "yKVUes2XqBG" + }, + { + "code": "ACTUAL_TARGET_P131700", + "id": "yOPs8YDTJYN" + }, + { + "code": "ACTUAL_TARGET_P130003", + "id": "a28XxorfvSd" }, { "code": "ACTUAL_TARGET_P020105", @@ -15675,8 +20409,8 @@ "id": "OkRrxWEmeoC" }, { - "code": "ACTUAL_TARGET_B100003", - "id": "O4ymJIA6h04" + "code": "ACTUAL_TARGET_P100003", + "id": "m4ArjOiAGx6" }, { "code": "ACTUAL_TARGET_P100005", @@ -15691,12 +20425,12 @@ "id": "CGIZ5iXpFG1" }, { - "code": "ACTUAL_TARGET_P030602", - "id": "KcMFIKF389O" + "code": "ACTUAL_TARGET_P030702", + "id": "eE08DEB8I2c" }, { - "code": "ACTUAL_TARGET_P030601", - "id": "iOSiI8fmwvj" + "code": "ACTUAL_TARGET_P030701", + "id": "qaeIOIDx9nC" }, { "code": "ACTUAL_TARGET_P100102", @@ -15735,8 +20469,8 @@ "id": "KiMDCv9gMDv" }, { - "code": "ACTUAL_TARGET_P030605", - "id": "mGMFIofAWHg" + "code": "ACTUAL_TARGET_P030705", + "id": "eK4SGSHSN0N" }, { "code": "ACTUAL_TARGET_P100202", @@ -15750,10 +20484,6 @@ "code": "ACTUAL_TARGET_P010101", "id": "u404ICrBKj3" }, - { - "code": "ACTUAL_TARGET_P060807", - "id": "mmO08ZfTGUK" - }, { "code": "ACTUAL_TARGET_P110102", "id": "Sg0aXfzUXJf" @@ -15770,14 +20500,6 @@ "code": "ACTUAL_TARGET_P040206", "id": "OqYV16jdLAT" }, - { - "code": "ACTUAL_TARGET_P060805", - "id": "WeC3yUE51bf" - }, - { - "code": "ACTUAL_TARGET_P060814", - "id": "W0y2RvbR0de" - }, { "code": "ACTUAL_TARGET_P010107", "id": "u2o1NJTMKUm" @@ -15786,18 +20508,10 @@ "code": "ACTUAL_TARGET_P100100", "id": "qG2NEEmdWHz" }, - { - "code": "ACTUAL_TARGET_P060804", - "id": "yagFkcydXNT" - }, { "code": "ACTUAL_TARGET_P040204", "id": "WaAPECAsQP1" }, - { - "code": "ACTUAL_TARGET_P060802", - "id": "mcQzOPPWUlD" - }, { "code": "ACTUAL_TARGET_P010100", "id": "eYmeRzhBFV4" @@ -15810,10 +20524,6 @@ "code": "ACTUAL_TARGET_P010109", "id": "uowl0RbRykP" }, - { - "code": "ACTUAL_TARGET_P060806", - "id": "qa80vVrCjYN" - }, { "code": "ACTUAL_TARGET_P010103", "id": "GG2PLLneSzf" @@ -15823,8 +20533,8 @@ "id": "eUkXqsgk3Nj" }, { - "code": "ACTUAL_TARGET_P030606", - "id": "ym6DyR8eFOL" + "code": "ACTUAL_TARGET_P030706", + "id": "Ko25PQ5ch7T" }, { "code": "ACTUAL_TARGET_P020101", @@ -15839,25 +20549,17 @@ "id": "GI0uN5tzlDv" }, { - "code": "ACTUAL_TARGET_P060803", - "id": "qek7QPL2kKz" + "code": "ACTUAL_TARGET_P080001", + "id": "Ooozbp0C8rL" }, { "code": "ACTUAL_TARGET_P040200", "id": "mKoPjOvnDVZ" }, - { - "code": "ACTUAL_TARGET_P060809", - "id": "uQKosMfAuW4" - }, { "code": "ACTUAL_TARGET_P010112", "id": "yGJpNm5qnxI" }, - { - "code": "ACTUAL_TARGET_P060812", - "id": "WAGqHvFZfvW" - }, { "code": "ACTUAL_TARGET_P010104", "id": "iw87EPHXiYP" @@ -15866,10 +20568,6 @@ "code": "ACTUAL_TARGET_P010105", "id": "K2Cq9YsANFr" }, - { - "code": "ACTUAL_TARGET_P060811", - "id": "uciE35qAArd" - }, { "code": "ACTUAL_TARGET_P010108", "id": "OSolmXhmkIq" @@ -15882,10 +20580,6 @@ "code": "ACTUAL_TARGET_P100401", "id": "yqGAlgQcMGC" }, - { - "code": "ACTUAL_TARGET_P060801", - "id": "yshJuZfN7WJ" - }, { "code": "ACTUAL_TARGET_P100200", "id": "C4W8uLCwHH2" @@ -15899,72 +20593,80 @@ "id": "ikc9w19TG4R" }, { - "code": "ACTUAL_TARGET_P060813", - "id": "qmctJOgcpYf" + "code": "ACTUAL_TARGET_P030704", + "id": "SqakDZS6pjO" }, { - "code": "ACTUAL_TARGET_P030604", - "id": "uIsz63cGrRy" + "code": "ACTUAL_TARGET_P030700", + "id": "CkG61c1txiE" }, { - "code": "ACTUAL_TARGET_P030600", - "id": "eIG2B6kGPPN" + "code": "ACTUAL_TARGET_P131500", + "id": "qyEDjdyhnD9" }, { "code": "ACTUAL_TARGET_P100103", "id": "WCi2Z1jW6WF" }, { - "code": "ACTUAL_TARGET_P070002", - "id": "ycO1VRq2dM2" + "code": "ACTUAL_TARGET_P070003", + "id": "qIqiSsTOZkK" }, { - "code": "ACTUAL_TARGET_P061100", - "id": "uOOm6Bt4NDR" + "code": "ACTUAL_TARGET_P070001", + "id": "G2SUAycvSqL" }, { - "code": "ACTUAL_TARGET_P061101", - "id": "iAy0jLch7ga" + "code": "ACTUAL_TARGET_P061300", + "id": "aaSUcpYcdvR" }, { - "code": "ACTUAL_TARGET_P061102", - "id": "O88WplGlsGl" + "code": "ACTUAL_TARGET_P061301", + "id": "mOaMcZbdFnb" + }, + { + "code": "ACTUAL_TARGET_P061302", + "id": "OgMrsRNw521" }, { "code": "ACTUAL_TARGET_P040208", "id": "q4WElwVi5Nv" }, { - "code": "ACTUAL_TARGET_P060500", - "id": "qI4YvbhzvJy" + "code": "ACTUAL_TARGET_P101100", + "id": "u8isLvRhRcD" }, { - "code": "ACTUAL_TARGET_P060700", - "id": "e4OM21zwLT6" + "code": "ACTUAL_TARGET_P060800", + "id": "i2gVwUdOuuT" }, { - "code": "ACTUAL_TARGET_P100900", - "id": "WmGZ5hmzytY" + "code": "ACTUAL_TARGET_P060400", + "id": "u6agTXQmk1h" + }, + { + "code": "ACTUAL_TARGET_P030601", + "id": "iOSiI8fmwvj" }, { - "code": "ACTUAL_TARGET_P030501", - "id": "SIKShvxagqm" + "code": "ACTUAL_TARGET_P030602", + "id": "KcMFIKF389O" }, { - "code": "ACTUAL_TARGET_P030500", - "id": "SI2f9IGzARv" + "code": "ACTUAL_TARGET_P030600", + "id": "eIG2B6kGPPN" }, { - "code": "ACTUAL_TARGET_P030300", - "id": "ygeaI39ahZN" + "code": "ACTUAL_TARGET_P131400", + "id": "qIo1jTt39pi" }, { - "code": "ACTUAL_TARGET_B080600", - "id": "GMgtwX65sO0" + "code": "ACTUAL_TARGET_B081000", + "id": "m2GyqMML9Zd" }, { - "code": "COST_BENEFIT_B080600", - "id": "SqySGdmledP" + "code": "COST_BENEFIT_B081000", + "id": "qUKgcLicnyy" }, { "code": "ACTUAL_TARGET_B010302", @@ -15990,6 +20692,10 @@ "code": "ACTUAL_TARGET_P040506", "id": "Sy4EZxKi36p" }, + { + "code": "ACTUAL_TARGET_B130007", + "id": "iyS8PnOTNm4" + }, { "code": "ACTUAL_TARGET_P040106", "id": "ius50xFld06" @@ -16014,6 +20720,10 @@ "code": "COST_BENEFIT_B020207", "id": "Og0m1YOm2hI" }, + { + "code": "ACTUAL_TARGET_P130001", + "id": "Gk44yO8kxh8" + }, { "code": "ACTUAL_TARGET_B030107", "id": "aS4cNdggotQ" @@ -16026,10 +20736,6 @@ "code": "ACTUAL_TARGET_B110200", "id": "KI2XxARZ3v6" }, - { - "code": "COST_BENEFIT_B110200", - "id": "q8Md4CSI8z6" - }, { "code": "ACTUAL_TARGET_B070800", "id": "m68LzR6ho7V" @@ -16071,12 +20777,12 @@ "id": "SsEPlY2njFe" }, { - "code": "ACTUAL_TARGET_B080802", - "id": "KushWn9p5ZK" + "code": "ACTUAL_TARGET_B081202", + "id": "q6WwL9Rzy8O" }, { - "code": "COST_BENEFIT_B080802", - "id": "C26JQGcgXuz" + "code": "COST_BENEFIT_B081202", + "id": "OyyqEgbGPC9" }, { "code": "ACTUAL_TARGET_B010205", @@ -16099,28 +20805,28 @@ "id": "mUOmMUuE5ab" }, { - "code": "ACTUAL_TARGET_B061000", - "id": "ug0GPFisudW" + "code": "ACTUAL_TARGET_B061200", + "id": "aSImrhq2GKm" }, { - "code": "COST_BENEFIT_B061000", - "id": "eEKe9akKXT2" + "code": "COST_BENEFIT_B061200", + "id": "G0toZDzozin" }, { - "code": "ACTUAL_TARGET_B061001", - "id": "SGU9TdCk6FA" + "code": "ACTUAL_TARGET_B061201", + "id": "mSsjkLZDWkI" }, { - "code": "COST_BENEFIT_B061001", - "id": "eM8Dbj30x4J" + "code": "COST_BENEFIT_B061201", + "id": "CiKs9iJXH35" }, { - "code": "ACTUAL_TARGET_B061002", - "id": "SiWmmxZKRNL" + "code": "ACTUAL_TARGET_B061202", + "id": "iywvGiCtR2e" }, { - "code": "COST_BENEFIT_B061002", - "id": "KiwrygQeG34" + "code": "COST_BENEFIT_B061202", + "id": "y0q3kyr6uu8" }, { "code": "ACTUAL_TARGET_B080100", @@ -16155,20 +20861,20 @@ "id": "qe4J5Foklnc" }, { - "code": "ACTUAL_TARGET_B080300", - "id": "GW2Ju7PNV1R" + "code": "ACTUAL_TARGET_B080500", + "id": "igUDsvZZiVg" }, { - "code": "COST_BENEFIT_B080300", - "id": "GaWsRnlCMBD" + "code": "COST_BENEFIT_B080500", + "id": "W6WmUK1km09" }, { - "code": "ACTUAL_TARGET_B080200", - "id": "S0hhVChlG1a" + "code": "ACTUAL_TARGET_B080300", + "id": "GW2Ju7PNV1R" }, { - "code": "COST_BENEFIT_B080200", - "id": "aE08TkrEUA8" + "code": "COST_BENEFIT_B080300", + "id": "GaWsRnlCMBD" }, { "code": "ACTUAL_TARGET_B020201", @@ -16187,12 +20893,12 @@ "id": "C4eWnbfGOTe" }, { - "code": "ACTUAL_TARGET_B080400", - "id": "WSajMa9nCGm" + "code": "ACTUAL_TARGET_B080700", + "id": "OS6zQlW0hiJ" }, { - "code": "COST_BENEFIT_B080400", - "id": "m872QeL9U5d" + "code": "COST_BENEFIT_B080700", + "id": "OQsaJzI9T8H" }, { "code": "ACTUAL_TARGET_B020203", @@ -16207,12 +20913,32 @@ "id": "G6Al1JqCJWw" }, { - "code": "ACTUAL_TARGET_B030700", - "id": "KGYDGtr9uRP" + "code": "ACTUAL_TARGET_P130804", + "id": "u4MhwUyxBjf" + }, + { + "code": "ACTUAL_TARGET_B030800", + "id": "u8oRA2PH7BU" + }, + { + "code": "COST_BENEFIT_B030800", + "id": "qSY0tmIwBla" + }, + { + "code": "ACTUAL_TARGET_B131600", + "id": "yW8HdyJbLx9" + }, + { + "code": "COST_BENEFIT_B131600", + "id": "GG0utjEVM5y" + }, + { + "code": "ACTUAL_TARGET_B130015", + "id": "m0ygPEQcxuf" }, { - "code": "COST_BENEFIT_B030700", - "id": "CY427KiPJZk" + "code": "COST_BENEFIT_B130015", + "id": "OKQ5MsdLTru" }, { "code": "ACTUAL_TARGET_B039999", @@ -16227,12 +20953,28 @@ "id": "yacni9KfLyl" }, { - "code": "ACTUAL_TARGET_B030200", - "id": "qeorAy157Qo" + "code": "ACTUAL_TARGET_B130900", + "id": "OcKCFBhdYGz" }, { - "code": "COST_BENEFIT_B030200", - "id": "OAOkX3T2Mvh" + "code": "COST_BENEFIT_B130900", + "id": "Gsqkb9nSpHL" + }, + { + "code": "ACTUAL_TARGET_B030300", + "id": "S801fMFUWI9" + }, + { + "code": "COST_BENEFIT_B030300", + "id": "mustviZTGO0" + }, + { + "code": "ACTUAL_TARGET_B131100", + "id": "uQOiysvAdE0" + }, + { + "code": "COST_BENEFIT_B131100", + "id": "Ou27cQlLSuh" }, { "code": "ACTUAL_TARGET_B030109", @@ -16296,6 +21038,26 @@ } ] }, + "covid19": { + "code": "COVID19", + "id": "ae61RHJtdOT", + "categoryOptions": [ + { + "code": "COVID19", + "id": "CW0Ym5sg6rL" + } + ] + }, + "default": { + "code": "default", + "id": "GLevLNI9wkl", + "categoryOptions": [ + { + "code": "default", + "id": "xYerKDKCefk" + } + ] + }, "gender": { "code": "GENDER", "id": "Kyg1O6YEGa9", @@ -16311,7 +21073,7 @@ ] }, "newRecurring": { - "code": "NEW_RECURRING", + "code": "NEW_RETURNING", "id": "a0Cy1qwUuZv", "categoryOptions": [ { @@ -16319,7 +21081,7 @@ "id": "S2y8dcmR2kD" }, { - "code": "RECURRING", + "code": "RETURNING", "id": "CyILz2yY8ey" } ] @@ -16329,50 +21091,480 @@ "targetActual": { "code": "ACTUAL_TARGET", "id": "pQjIEZS8Sx7", + "displayName": "Actual/Target", + "categories": [ + { + "id": "GIIHAr9BzzO" + } + ], "categoryOptionCombos": [ { "id": "H8Sj3601jDn", - "displayName": "Target" + "displayName": "Target", + "categoryOptions": [ + { + "id": "imyqCWQ229K", + "displayName": "Target" + } + ] }, { "id": "lbxlzyXK4zr", - "displayName": "Actual" + "displayName": "Actual", + "categoryOptions": [ + { + "id": "eWeQoOlAcxV", + "displayName": "Actual" + } + ] + } + ] + }, + "covid19": { + "code": "COVID19", + "id": "eYsn8MKUb1f", + "displayName": "COVID-19", + "categories": [ + { + "id": "ae61RHJtdOT" + } + ], + "categoryOptionCombos": [ + { + "id": "sJpz2vAuxfb", + "displayName": "COVID-19", + "categoryOptions": [ + { + "id": "CW0Ym5sg6rL", + "displayName": "COVID-19" + } + ] + } + ] + }, + "genderNewRecurringCovid19": { + "code": "COVID19_NEW_RETURNING_GENDER", + "id": "WimQuyEpvZs", + "displayName": "COVID-19/New-Returning/Gender", + "categories": [ + { + "id": "ae61RHJtdOT" + }, + { + "id": "a0Cy1qwUuZv" + }, + { + "id": "Kyg1O6YEGa9" + } + ], + "categoryOptionCombos": [ + { + "id": "Au7kJLKqCAY", + "displayName": "COVID-19, Returning, Female", + "categoryOptions": [ + { + "id": "CW0Ym5sg6rL", + "displayName": "COVID-19" + }, + { + "id": "CyILz2yY8ey", + "displayName": "Returning" + }, + { + "id": "yW2hYVS3S4u", + "displayName": "Female" + } + ] + }, + { + "id": "bOokLlHM9no", + "displayName": "COVID-19, New, Female", + "categoryOptions": [ + { + "id": "CW0Ym5sg6rL", + "displayName": "COVID-19" + }, + { + "id": "S2y8dcmR2kD", + "displayName": "New" + }, + { + "id": "yW2hYVS3S4u", + "displayName": "Female" + } + ] + }, + { + "id": "kx33GL2khoi", + "displayName": "COVID-19, New, Male", + "categoryOptions": [ + { + "id": "CW0Ym5sg6rL", + "displayName": "COVID-19" + }, + { + "id": "qk2FihwV6IL", + "displayName": "Male" + }, + { + "id": "S2y8dcmR2kD", + "displayName": "New" + } + ] + }, + { + "id": "i4nidjHBsme", + "displayName": "COVID-19, Returning, Male", + "categoryOptions": [ + { + "id": "CW0Ym5sg6rL", + "displayName": "COVID-19" + }, + { + "id": "CyILz2yY8ey", + "displayName": "Returning" + }, + { + "id": "qk2FihwV6IL", + "displayName": "Male" + } + ] } ] }, "default": { "code": "default", "id": "bjDvmb4bfuf", + "displayName": "default", + "categories": [ + { + "id": "GLevLNI9wkl" + } + ], "categoryOptionCombos": [ { "id": "HllvX50cXC0", - "displayName": "default" + "displayName": "default", + "categoryOptions": [ + { + "id": "xYerKDKCefk", + "displayName": "default" + } + ] } ] }, "genderNewRecurring": { - "code": "GENDER_NEW_RECURRING", + "code": "NEW_RETURNING_GENDER", "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender", + "categories": [ + { + "id": "a0Cy1qwUuZv" + }, + { + "id": "Kyg1O6YEGa9" + } + ], "categoryOptionCombos": [ { - "id": "rgEN46cGauU", - "displayName": "Male, Recurring" + "id": "xgT2W9JaXTq", + "displayName": "Female, Recurring", + "categoryOptions": [ + { + "id": "CyILz2yY8ey", + "displayName": "Returning" + }, + { + "id": "yW2hYVS3S4u", + "displayName": "Female" + } + ] + }, + { + "id": "UU2P0YSJM8A", + "displayName": "Female, New", + "categoryOptions": [ + { + "id": "S2y8dcmR2kD", + "displayName": "New" + }, + { + "id": "yW2hYVS3S4u", + "displayName": "Female" + } + ] }, { "id": "nwv02VfyQuz", - "displayName": "Male, New" + "displayName": "Male, New", + "categoryOptions": [ + { + "id": "qk2FihwV6IL", + "displayName": "Male" + }, + { + "id": "S2y8dcmR2kD", + "displayName": "New" + } + ] + }, + { + "id": "rgEN46cGauU", + "displayName": "Male, Recurring", + "categoryOptions": [ + { + "id": "CyILz2yY8ey", + "displayName": "Returning" + }, + { + "id": "qk2FihwV6IL", + "displayName": "Male" + } + ] + } + ] + } + }, + "allCategoryCombos": [ + { + "code": "ACTUAL_TARGET", + "id": "pQjIEZS8Sx7", + "displayName": "Actual/Target", + "categories": [ + { + "id": "GIIHAr9BzzO" + } + ], + "categoryOptionCombos": [ + { + "id": "H8Sj3601jDn", + "displayName": "Target", + "categoryOptions": [ + { + "id": "imyqCWQ229K", + "displayName": "Target" + } + ] + }, + { + "id": "lbxlzyXK4zr", + "displayName": "Actual", + "categoryOptions": [ + { + "id": "eWeQoOlAcxV", + "displayName": "Actual" + } + ] + } + ] + }, + { + "code": "COVID19", + "id": "eYsn8MKUb1f", + "displayName": "COVID-19", + "categories": [ + { + "id": "ae61RHJtdOT" + } + ], + "categoryOptionCombos": [ + { + "id": "sJpz2vAuxfb", + "displayName": "COVID-19", + "categoryOptions": [ + { + "id": "CW0Ym5sg6rL", + "displayName": "COVID-19" + } + ] + } + ] + }, + { + "code": "COVID19_NEW_RETURNING_GENDER", + "id": "WimQuyEpvZs", + "displayName": "COVID-19/New-Returning/Gender", + "categories": [ + { + "id": "ae61RHJtdOT" + }, + { + "id": "a0Cy1qwUuZv" + }, + { + "id": "Kyg1O6YEGa9" + } + ], + "categoryOptionCombos": [ + { + "id": "Au7kJLKqCAY", + "displayName": "COVID-19, Returning, Female", + "categoryOptions": [ + { + "id": "CW0Ym5sg6rL", + "displayName": "COVID-19" + }, + { + "id": "CyILz2yY8ey", + "displayName": "Returning" + }, + { + "id": "yW2hYVS3S4u", + "displayName": "Female" + } + ] + }, + { + "id": "bOokLlHM9no", + "displayName": "COVID-19, New, Female", + "categoryOptions": [ + { + "id": "CW0Ym5sg6rL", + "displayName": "COVID-19" + }, + { + "id": "S2y8dcmR2kD", + "displayName": "New" + }, + { + "id": "yW2hYVS3S4u", + "displayName": "Female" + } + ] + }, + { + "id": "kx33GL2khoi", + "displayName": "COVID-19, New, Male", + "categoryOptions": [ + { + "id": "CW0Ym5sg6rL", + "displayName": "COVID-19" + }, + { + "id": "qk2FihwV6IL", + "displayName": "Male" + }, + { + "id": "S2y8dcmR2kD", + "displayName": "New" + } + ] + }, + { + "id": "i4nidjHBsme", + "displayName": "COVID-19, Returning, Male", + "categoryOptions": [ + { + "id": "CW0Ym5sg6rL", + "displayName": "COVID-19" + }, + { + "id": "CyILz2yY8ey", + "displayName": "Returning" + }, + { + "id": "qk2FihwV6IL", + "displayName": "Male" + } + ] + } + ] + }, + { + "code": "default", + "id": "bjDvmb4bfuf", + "displayName": "default", + "categories": [ + { + "id": "GLevLNI9wkl" + } + ], + "categoryOptionCombos": [ + { + "id": "HllvX50cXC0", + "displayName": "default", + "categoryOptions": [ + { + "id": "xYerKDKCefk", + "displayName": "default" + } + ] + } + ] + }, + { + "code": "NEW_RETURNING_GENDER", + "id": "GKWiemQPU5U", + "displayName": "New-Returning/Gender", + "categories": [ + { + "id": "a0Cy1qwUuZv" }, + { + "id": "Kyg1O6YEGa9" + } + ], + "categoryOptionCombos": [ { "id": "xgT2W9JaXTq", - "displayName": "Female, Recurring" + "displayName": "Female, Recurring", + "categoryOptions": [ + { + "id": "CyILz2yY8ey", + "displayName": "Returning" + }, + { + "id": "yW2hYVS3S4u", + "displayName": "Female" + } + ] }, { "id": "UU2P0YSJM8A", - "displayName": "Female, New" + "displayName": "Female, New", + "categoryOptions": [ + { + "id": "S2y8dcmR2kD", + "displayName": "New" + }, + { + "id": "yW2hYVS3S4u", + "displayName": "Female" + } + ] + }, + { + "id": "nwv02VfyQuz", + "displayName": "Male, New", + "categoryOptions": [ + { + "id": "qk2FihwV6IL", + "displayName": "Male" + }, + { + "id": "S2y8dcmR2kD", + "displayName": "New" + } + ] + }, + { + "id": "rgEN46cGauU", + "displayName": "Male, Recurring", + "categoryOptions": [ + { + "id": "CyILz2yY8ey", + "displayName": "Returning" + }, + { + "id": "qk2FihwV6IL", + "displayName": "Male" + } + ] } ] } - }, + ], "categoryOptions": { "actual": { "code": "ACTUAL", @@ -16383,6 +21575,27 @@ } ] }, + "covid19": { + "code": "COVID19", + "id": "CW0Ym5sg6rL", + "categoryOptionCombos": [ + { + "id": "Au7kJLKqCAY" + }, + { + "id": "bOokLlHM9no" + }, + { + "id": "kx33GL2khoi" + }, + { + "id": "sJpz2vAuxfb" + }, + { + "id": "i4nidjHBsme" + } + ] + }, "female": { "code": "FEMALE", "id": "yW2hYVS3S4u", @@ -16392,6 +21605,12 @@ }, { "id": "UU2P0YSJM8A" + }, + { + "id": "Au7kJLKqCAY" + }, + { + "id": "bOokLlHM9no" } ] }, @@ -16399,11 +21618,17 @@ "code": "MALE", "id": "qk2FihwV6IL", "categoryOptionCombos": [ + { + "id": "kx33GL2khoi" + }, { "id": "nwv02VfyQuz" }, { "id": "rgEN46cGauU" + }, + { + "id": "i4nidjHBsme" } ] }, @@ -16412,22 +21637,34 @@ "id": "S2y8dcmR2kD", "categoryOptionCombos": [ { - "id": "nwv02VfyQuz" + "id": "UU2P0YSJM8A" }, { - "id": "UU2P0YSJM8A" + "id": "bOokLlHM9no" + }, + { + "id": "kx33GL2khoi" + }, + { + "id": "nwv02VfyQuz" } ] }, "recurring": { - "code": "RECURRING", + "code": "RETURNING", "id": "CyILz2yY8ey", "categoryOptionCombos": [ { "id": "xgT2W9JaXTq" }, + { + "id": "Au7kJLKqCAY" + }, { "id": "rgEN46cGauU" + }, + { + "id": "i4nidjHBsme" } ] }, diff --git a/src/models/__tests__/project-data.ts b/src/models/__tests__/project-data.ts index 1a222d6b..9c3ae83e 100644 --- a/src/models/__tests__/project-data.ts +++ b/src/models/__tests__/project-data.ts @@ -48,8 +48,8 @@ export function getProject( ): Project { return Project.create(api, config) .setObj(Object.assign({}, projectData, partialProjectData || {})) - .updateDataElementsSelection("mGQ5ckOTU8A", ["WS8XV4WWPE7", "ik0ICagvIjm"]) + .updateDataElementsSelection("ieyBABjYyHO", ["WS8XV4WWPE7", "ik0ICagvIjm"]) .project.updateDataElementsSelection("GkiSljtLcOI", ["yMqK9DKbA3X"]) - .project.updateDataElementsMERSelection("mGQ5ckOTU8A", ["WS8XV4WWPE7"]) + .project.updateDataElementsMERSelection("ieyBABjYyHO", ["WS8XV4WWPE7"]) .project.updateDataElementsMERSelection("GkiSljtLcOI", ["yMqK9DKbA3X"]).project; } diff --git a/src/models/dataElementsSet.ts b/src/models/dataElementsSet.ts index cb607104..a5012f0c 100644 --- a/src/models/dataElementsSet.ts +++ b/src/models/dataElementsSet.ts @@ -295,6 +295,7 @@ export default class DataElementsSet { const sourceDataElements = _(allDataElements) .keyBy(de => de.id) .at(dataElementIds) + .compact() .flatMap(de => [de, ...de.pairedDataElements]) .uniqBy(de => de.id) .compact() @@ -324,6 +325,7 @@ export default class DataElementsSet { const sourceDataElements = _(allDataElements) .keyBy(de => de.id) .at(dataElementIds) + .compact() .flatMap(de => [de, ...de.pairedDataElements]) .uniqBy(de => de.id) .compact() diff --git a/src/models/dev-project.ts b/src/models/dev-project.ts index 669899a8..fafccf2d 100644 --- a/src/models/dev-project.ts +++ b/src/models/dev-project.ts @@ -23,19 +23,19 @@ export function getDevProject(initialProject: Project, enabled: boolean) { displayName: "Bahamas", }) .set("sectors", [ - { id: "mGQ5ckOTU8A", displayName: "Agriculture", code: "SECTOR_AGRICULTURE" }, + { id: "ieyBABjYyHO", displayName: "Agriculture", code: "SECTOR_AGRICULTURE" }, { id: "GkiSljtLcOI", displayName: "Livelihood", code: "SECTOR_LIVELIHOOD" }, ]) .set( "dataElementsSelection", initialProject.dataElementsSelection - .updateSelectedWithRelations("mGQ5ckOTU8A", ["WS8XV4WWPE7", "ik0ICagvIjm"]) + .updateSelectedWithRelations("ieyBABjYyHO", ["WS8XV4WWPE7", "ik0ICagvIjm"]) .dataElements.updateSelectedWithRelations("GkiSljtLcOI", ["We61YNYyOX0"]) .dataElements ) .set( "dataElementsMER", - initialProject.dataElementsMER.updateSelected({ mGQ5ckOTU8A: ["ik0ICagvIjm"] }) + initialProject.dataElementsMER.updateSelected({ ieyBABjYyHO: ["ik0ICagvIjm"] }) ) .set("name", "0Test1-" + awardNumber) .set("description", "Some description") diff --git a/src/utils/tests.ts b/src/utils/tests.ts new file mode 100644 index 00000000..26bcbe8b --- /dev/null +++ b/src/utils/tests.ts @@ -0,0 +1,25 @@ +import fs from "fs"; +import MockAdapter from "axios-mock-adapter/types"; + +export function logUnknownRequest(mock: MockAdapter) { + mock.onAny().reply(args => { + const { method, url, params, data } = args; + const msgs: string[] = []; + msgs.push(`Error: ${method?.toUpperCase()} ${url}`); + if (params) msgs.push(`Params: ${JSON.stringify(params)}`); + if (data) { + const json = JSON.stringify(JSON.parse(data), null, 2); + if (json.length > 100) { + const n = Math.floor(Math.random() * 1000) + 1; + const actualPath = `/tmp/actual-${n}.json`; + fs.writeFileSync(actualPath, json); + msgs.push(`Data written: ${actualPath}`); + } else { + msgs.push(`Data: ${JSON.stringify(JSON.parse(data), null, 2)}`); + } + } + + console.debug(msgs.join("\n")); + return [500, {}]; + }); +} From 569b8b2843d35e2e2893f19ec15c6c7aca3eff87 Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 13:52:08 +0200 Subject: [PATCH 19/28] Update protection selection to new metadata --- cypress/integration/08.project-indicators.spec.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cypress/integration/08.project-indicators.spec.js b/cypress/integration/08.project-indicators.spec.js index 3230f995..27b8f47c 100644 --- a/cypress/integration/08.project-indicators.spec.js +++ b/cypress/integration/08.project-indicators.spec.js @@ -63,9 +63,8 @@ describe("Projects - Indicators", () => { .expectSnackbar("Global data elements with selected subs cannot be unselected") .selectSector("Protection") - // Select an indicator which has a paired sub indicator, its global should be also selected .select("B100500") - .assertExactSelected(["B100500", "P100701", "P100700"]) + .assertExactSelected(["B100500", "P100600"]) .selectSector("Nutrition") // Select a cross-sectorial indicator which has paired sub indicators in other sectors (Food) From e1810e0e2453e90f6b67c130fba6be9f79ecc43e Mon Sep 17 00:00:00 2001 From: Arnau Sanchez Date: Mon, 20 Jul 2020 14:32:37 +0200 Subject: [PATCH 20/28] Refactor dropdown selection + data-cy --- cypress/integration/00.project-create.spec.js | 2 +- cypress/integration/02.target-values.spec.js | 34 +++++++++---------- src/components/data-entry/DataEntry.tsx | 5 +-- src/components/dropdown/Dropdown.tsx | 4 ++- .../disaggregation/DisaggregationStep.tsx | 10 ++++-- 5 files changed, 31 insertions(+), 24 deletions(-) diff --git a/cypress/integration/00.project-create.spec.js b/cypress/integration/00.project-create.spec.js index b1bdc174..b5984040 100644 --- a/cypress/integration/00.project-create.spec.js +++ b/cypress/integration/00.project-create.spec.js @@ -99,7 +99,7 @@ describe("Projects - Create", () => { // Disaggregation cy.waitForStep("Disaggregation"); - cy.get("[data-test=covid19-selector-B010200]") + cy.get("[data-cy=covid19-selector-B010200]") .contains("No") .click(); cy.get(".MuiPopover-paper") diff --git a/cypress/integration/02.target-values.spec.js b/cypress/integration/02.target-values.spec.js index 853d1e35..026aa012 100644 --- a/cypress/integration/02.target-values.spec.js +++ b/cypress/integration/02.target-values.spec.js @@ -8,37 +8,37 @@ describe("Target Values", () => { cy.contains("Add Target Values").click(); }); - it("can enter data values with new/recurring validations", () => { + it("can enter data values with new/returning validations", () => { const entryPage = new DataEntryPage("data-entry"); - entryPage.selectInput("WS8XV4WWPE7", "HllvX50cXC0", 10); + entryPage.selectInput("WS8XV4WWPE7", "GI9GyGCQwTf", 10); const dataElementId = "e6wdrrz9ZS6"; const cocIds = { - maleNew: "nwv02VfyQuz", - maleRecurring: "rgEN46cGauU", - femaleNew: "UU2P0YSJM8A", - femaleRecurring: "xgT2W9JaXTq", + newMal: "TpxiQHEumCA", + returningMale: "SW9iYI4GmW2", + newFemale: "Oq364hCb4KD", + returningFemale: "ZbU1cop8Gzl", }; entryPage.selectTab("Livelihood"); - entryPage.selectInput(dataElementId, cocIds.maleNew, 1); - entryPage.selectInput(dataElementId, cocIds.maleRecurring, 0); - entryPage.selectInput(dataElementId, cocIds.femaleNew, 2); - entryPage.selectInput(dataElementId, cocIds.femaleRecurring, 0); + entryPage.selectInput(dataElementId, cocIds.newMal, 1); + entryPage.selectInput(dataElementId, cocIds.returningMale, 0); + entryPage.selectInput(dataElementId, cocIds.newFemale, 2); + entryPage.selectInput(dataElementId, cocIds.returningFemale, 0); entryPage.selectMonth(1); entryPage.selectTab("Livelihood"); - entryPage.selectInput(dataElementId, cocIds.maleNew, 2); - entryPage.selectInput(dataElementId, cocIds.maleRecurring, 1); - entryPage.selectInput(dataElementId, cocIds.femaleNew, 3); - entryPage.selectInput(dataElementId, cocIds.femaleRecurring, 0); + entryPage.selectInput(dataElementId, cocIds.newMal, 2); + entryPage.selectInput(dataElementId, cocIds.returningMale, 1); + entryPage.selectInput(dataElementId, cocIds.newFemale, 3); + entryPage.selectInput(dataElementId, cocIds.returningFemale, 0); entryPage.selectMonth(2); entryPage.selectTab("Livelihood"); - entryPage.selectInput(dataElementId, cocIds.maleNew, 3); - entryPage.selectInput(dataElementId, cocIds.maleRecurring, 4); - entryPage.hasValidationError("Recurring value (4) cannot be greater"); + entryPage.selectInput(dataElementId, cocIds.newMal, 3); + entryPage.selectInput(dataElementId, cocIds.returningMale, 4); + entryPage.hasValidationError("Returning value (4) cannot be greater"); }); }); diff --git a/src/components/data-entry/DataEntry.tsx b/src/components/data-entry/DataEntry.tsx index 7c6c62c1..9125e692 100644 --- a/src/components/data-entry/DataEntry.tsx +++ b/src/components/data-entry/DataEntry.tsx @@ -203,8 +203,9 @@ const DataEntry = (props: DataEntryProps) => {
{!state.dropdownHasValues && } {state.dropdownHasValues && ( -
+
setState({ ...state, dropdownValue: value })} @@ -244,7 +245,7 @@ const styles = { backgroundIframe: { backgroundColor: "white" }, selector: { padding: "35px 10px 10px 5px", backgroundColor: "white" }, buttons: { display: "inline", marginLeft: 20 }, - dropdown: { display: "inline" }, + dropdown: { marginBottom: -20 }, }; function isOptionInSelect(select: HTMLSelectElement, value: string): boolean { diff --git a/src/components/dropdown/Dropdown.tsx b/src/components/dropdown/Dropdown.tsx index d438b285..8bac53bb 100644 --- a/src/components/dropdown/Dropdown.tsx +++ b/src/components/dropdown/Dropdown.tsx @@ -8,6 +8,7 @@ type Value = string; export type DropdownItem = { value: Value; text: string }; export interface DropdownProps { + id?: string; items: Array; onChange: (value: Value | undefined) => void; label?: string; @@ -16,7 +17,7 @@ export interface DropdownProps { } const Dropdown: React.FC = props => { - const { items, value, onChange, label, hideEmpty } = props; + const { items, value, onChange, label, hideEmpty, id } = props; const selectValue = value === undefined || !items.map(item => item.value).includes(value) ? "" : value; @@ -30,6 +31,7 @@ const Dropdown: React.FC = props => { return (