diff --git a/changelog.d/762-uk-rowwise-joint-solve.added.md b/changelog.d/762-uk-rowwise-joint-solve.added.md new file mode 100644 index 000000000..0c3ec4abf --- /dev/null +++ b/changelog.d/762-uk-rowwise-joint-solve.added.md @@ -0,0 +1 @@ +Add a joint UK rowwise calibration solve for local, ladder, and national targets with receipted sampling, support, vintage, and incumbent-comparison evidence. diff --git a/docs/gate-battery-contract.md b/docs/gate-battery-contract.md index a39380cb8..ff9cf097e 100644 --- a/docs/gate-battery-contract.md +++ b/docs/gate-battery-contract.md @@ -129,6 +129,7 @@ Canonical artifact keys: | `input_mass_reference` | the UK national build, when the licensed sidecar is supplied | `input_mass_parity` (UK override) | | `reviewed_input_mass_exclusions` (optional override) | the UK national build | `input_mass_parity` (UK override) | | `reviewed_qrf_tail_exclusions` (optional override) | the UK national build | `tail_concentration` (UK override) | +| `uk_area_support_summary`, `exclusions_evaluated_on` | the UK local rowwise build | `area_support` (UK binding; reviewed exclusions carry measured shortfalls and stale entries fail) | The UK registry (`microcosm.build.uk_runtime.battery_bindings.UK_GATE_REGISTRY`) is the diff --git a/docs/uk-local-cross-grain-reconciliation-802.md b/docs/uk-local-cross-grain-reconciliation-802.md index 39e192166..d036008a2 100644 --- a/docs/uk-local-cross-grain-reconciliation-802.md +++ b/docs/uk-local-cross-grain-reconciliation-802.md @@ -10,7 +10,7 @@ the solve signature. ## Detection and bridges Exact matches use the measurement fields `concept`, `entity`, `map_to`, and -`filters`. Two explicit UK bridges cover relationships that those fields +`filters`. Explicit UK bridges cover relationships that those fields cannot express on their own: - The 10-cell `ons.household_composition.*` partition sums to the national @@ -20,6 +20,16 @@ cannot express on their own: `dwp.uc.payment_distribution_*` rows also match the by-area target exactly and form a separate exhaustive national partition. +Eight age bridges pair the single-cell UK controls +`ons.population.age_0_9_by_region` through +`ons.population.age_70_79_by_region` with the corresponding local +`ons.age.0_10` through `ons.age.70_80` bands. They represent the same +integer-age populations, but the national inclusive and local half-open filter +encodings do not signature-match. Each bridge therefore rescales both the +constituency and local-authority band to the `K02000001` UK total over the +declared England, Wales, Scotland, and Northern Ireland legs. The national +80--89 band has no local counterpart and is deliberately not bridged. + These declarations live beside the UK Ledger target orchestration in `uk_runtime/ledger_targets.py`. Tests pin the precedence and complete bridge membership so a rule change requires an explicit doctrine-constants review. diff --git a/packages/microcosm-build/src/microcosm/build/cross_grain.py b/packages/microcosm-build/src/microcosm/build/cross_grain.py index cfc240c57..f9065d90a 100644 --- a/packages/microcosm-build/src/microcosm/build/cross_grain.py +++ b/packages/microcosm-build/src/microcosm/build/cross_grain.py @@ -69,6 +69,9 @@ def detect_cross_grain_inconsistencies( bound_higher_targets: Iterable[str], contract_signatures: Mapping[str, Mapping[str, Any]], rule: CrossGrainRule, + *, + reviewed_unbound_higher_targets: Mapping[str, Mapping[str, object]] | None = None, + licensed_empty_legs: Mapping[str, frozenset[str]] | None = None, ) -> tuple[CrossGrainInconsistency, ...]: """Detect exact-signature and explicitly bridged cross-grain groups. @@ -77,10 +80,14 @@ def detect_cross_grain_inconsistencies( or the rowwise aliases ``area_type``/``area_code``. Contract sides may be written as either ```` or ``contract:``; external sides use their declared ``external:...`` bridge name. + + A partially bound declared bridge is ignored only when every missing + higher member has a record in ``reviewed_unbound_higher_targets``. """ columns = _surface_columns(local_frame) _validate_rule(rule) + _validate_licensed_empty_legs(licensed_empty_legs) bound = tuple(str(target_id) for target_id in bound_higher_targets) _require_unique_nonblank(bound, label="bound_higher_targets") unknown = sorted(set(bound) - set(contract_signatures)) @@ -92,14 +99,14 @@ def detect_cross_grain_inconsistencies( bridge_by_side = _bridge_by_side(rule) bound_set = set(bound) - for bridge in rule.bridges: - selected = bound_set & set(bridge.higher_target_ids) - if selected and selected != set(bridge.higher_target_ids): - missing = sorted(set(bridge.higher_target_ids) - selected) - raise ValueError( - f"cross-grain bridge {bridge.bridge_id!r} is partially bound; " - f"missing higher target(s) {missing}." - ) + unbound_bridge_ids = { + record["bridge_id"] + for record in _reviewed_unbound_bridges( + bound_set, + rule, + reviewed_unbound_higher_targets, + ) + } grouped: dict[ tuple[str, str, tuple[tuple[str, Any], ...]], @@ -129,6 +136,8 @@ def detect_cross_grain_inconsistencies( bridge = bridge_by_side.get(contract_id) if bridge is None: bridge = bridge_by_side.get(f"contract:{contract_id}") + if bridge is not None and bridge.bridge_id in unbound_bridge_ids: + bridge = None is_bound_higher = contract_id in bound_set if grain == rule.grain_precedence[0] and not is_bound_higher: @@ -198,9 +207,7 @@ def detect_cross_grain_inconsistencies( lower = tuple(row[0] for row in rows if row[1] == lower_grain) inconsistencies.append( CrossGrainInconsistency( - inconsistency_id=( - f"{identity}:{winning_grain}_over_{lower_grain}" - ), + inconsistency_id=(f"{identity}:{winning_grain}_over_{lower_grain}"), bridge_id=bridge_id or None, signature=signature, winning_grain=winning_grain, @@ -210,26 +217,34 @@ def detect_cross_grain_inconsistencies( higher_target_ids=higher_ids, ) ) - return tuple( - sorted(inconsistencies, key=lambda group: group.inconsistency_id) - ) + return tuple(sorted(inconsistencies, key=lambda group: group.inconsistency_id)) -def reconcile_cross_grain_surface( +def _reconcile_cross_grain_surface_with_control_receipts( local_frame: pd.DataFrame, groups: Iterable[CrossGrainInconsistency], rule: CrossGrainRule, -) -> tuple[pd.DataFrame, list[dict[str, Any]]]: + *, + licensed_empty_legs: Mapping[str, frozenset[str]] | None = None, +) -> tuple[ + pd.DataFrame, + list[dict[str, Any]], + list[dict[str, Any]], + list[dict[str, Any]], +]: """Return a copied surface with every detected lower grain rescaled.""" columns = _surface_columns(local_frame) _validate_rule(rule) + _validate_licensed_empty_legs(licensed_empty_legs) materialized_groups = tuple(groups) _assert_compatible_overlapping_groups( local_frame, materialized_groups, columns, rule ) reconciled = local_frame.copy(deep=True) receipts: list[dict[str, Any]] = [] + empty_legs_licensed: list[dict[str, Any]] = [] + controls_without_lower_rows: list[dict[str, Any]] = [] for group in materialized_groups: controls = _winning_controls(reconciled, group, columns, rule) lower_by_leg: dict[str, list[int]] = {} @@ -243,6 +258,14 @@ def reconcile_cross_grain_surface( ) lower_by_leg.setdefault(leg, []).append(position) + lower_target_ids = tuple( + sorted( + { + str(reconciled.iloc[position][columns["target_id"]]) + for position in group.lower_positions + } + ) + ) assigned_controls: dict[str, dict[str, Any]] = {} for control in controls: for leg in control["covered_legs"]: @@ -268,6 +291,52 @@ def reconcile_cross_grain_surface( f"unparented lower-grain leg(s) {unparented}." ) + populated_controls: list[dict[str, Any]] = [] + for control in controls: + positions = [ + position + for leg in control["covered_legs"] + for position in lower_by_leg.get(leg, ()) + ] + if positions: + populated_controls.append(control) + continue + for leg in control["covered_legs"]: + unlicensed = [ + target_id + for target_id in lower_target_ids + if leg + not in _licensed_legs_for_target( + target_id, + licensed_empty_legs, + ) + ] + if unlicensed: + raise ValueError( + f"cross-grain inconsistency {group.inconsistency_id!r} " + f"has an empty leg {leg!r} for parent geography " + f"{control['parent_geography_id']!r}; the leg lacks a " + f"licence for lower target(s) {unlicensed}." + ) + empty_legs_licensed.append( + { + "inconsistency_id": group.inconsistency_id, + "parent_geography_id": str(control["parent_geography_id"]), + "leg": leg, + "lower_target_ids": list(lower_target_ids), + } + ) + controls_without_lower_rows.append( + { + "inconsistency_id": group.inconsistency_id, + "parent_geography_id": str(control["parent_geography_id"]), + "covered_legs": list(control["covered_legs"]), + "higher_target_ids": list(control["higher_target_ids"]), + "lower_target_ids": list(lower_target_ids), + } + ) + controls = populated_controls + leg_receipts: list[dict[str, Any]] = [] used_controls: set[tuple[str, tuple[str, ...]]] = set() for control in controls: @@ -283,12 +352,6 @@ def reconcile_cross_grain_surface( for leg in control["covered_legs"] for position in lower_by_leg.get(leg, ()) ] - if not positions: - raise ValueError( - f"cross-grain inconsistency {group.inconsistency_id!r} " - f"has an empty leg for parent geography " - f"{control['parent_geography_id']!r}." - ) raw_values = reconciled.iloc[positions][columns["value"]].to_numpy( dtype=np.float64 ) @@ -322,9 +385,9 @@ def reconcile_cross_grain_surface( f"cross-grain inconsistency {group.inconsistency_id!r} " "cannot reconcile opposite-signed lower and control targets." ) - reconciled.iloc[ - positions, reconciled.columns.get_loc(columns["value"]) - ] = raw_values * factor + reconciled.iloc[positions, reconciled.columns.get_loc(columns["value"])] = ( + raw_values * factor + ) new_total = float( reconciled.iloc[positions][columns["value"]] .to_numpy(dtype=np.float64) @@ -335,9 +398,7 @@ def reconcile_cross_grain_surface( f"cross-grain inconsistency {group.inconsistency_id!r} " "produced a non-finite reconciled total." ) - if not np.isclose( - new_total, parent_value, rtol=_CLOSURE_RTOL, atol=0.0 - ): + if not np.isclose(new_total, parent_value, rtol=_CLOSURE_RTOL, atol=0.0): raise ValueError( f"cross-grain inconsistency {group.inconsistency_id!r} " f"left leg {'+'.join(control['covered_legs'])!r} off its " @@ -374,6 +435,29 @@ def reconcile_cross_grain_surface( "legs": leg_receipts, } ) + return ( + reconciled, + receipts, + empty_legs_licensed, + controls_without_lower_rows, + ) + + +def reconcile_cross_grain_surface( + local_frame: pd.DataFrame, + groups: Iterable[CrossGrainInconsistency], + rule: CrossGrainRule, + *, + licensed_empty_legs: Mapping[str, frozenset[str]] | None = None, +) -> tuple[pd.DataFrame, list[dict[str, Any]]]: + """Return a copied surface with every detected lower grain rescaled.""" + + reconciled, receipts, _, _ = _reconcile_cross_grain_surface_with_control_receipts( + local_frame, + groups, + rule, + licensed_empty_legs=licensed_empty_legs, + ) return reconciled, receipts @@ -382,6 +466,9 @@ def apply_cross_grain_reconciliation( bound_higher_targets: Iterable[str], contract_signatures: Mapping[str, Mapping[str, Any]], rule: CrossGrainRule, + *, + reviewed_unbound_higher_targets: Mapping[str, Mapping[str, object]] | None = None, + licensed_empty_legs: Mapping[str, frozenset[str]] | None = None, ) -> tuple[pd.DataFrame, dict[str, Any]]: """Detect, reconcile, and return the always-present pass receipt.""" @@ -391,16 +478,32 @@ def apply_cross_grain_reconciliation( bound, contract_signatures, rule, + reviewed_unbound_higher_targets=reviewed_unbound_higher_targets, + licensed_empty_legs=licensed_empty_legs, ) - reconciled, group_receipts = reconcile_cross_grain_surface( - local_frame, groups, rule + unbound_bridges = _reviewed_unbound_bridges( + set(bound), + rule, + reviewed_unbound_higher_targets, + ) + ( + reconciled, + group_receipts, + empty_legs_licensed, + controls_without_lower_rows, + ) = _reconcile_cross_grain_surface_with_control_receipts( + local_frame, + groups, + rule, + licensed_empty_legs=licensed_empty_legs, ) receipt = { "bound_higher_targets": list(bound), - "inconsistencies_in_force": [ - group.inconsistency_id for group in groups - ], + "inconsistencies_in_force": [group.inconsistency_id for group in groups], "groups": group_receipts, + "unbound_bridges": unbound_bridges, + "empty_legs_licensed": empty_legs_licensed, + "controls_without_lower_rows": controls_without_lower_rows, "absence": ( None if groups @@ -410,6 +513,39 @@ def apply_cross_grain_reconciliation( return reconciled, receipt +def _reviewed_unbound_bridges( + bound_higher_targets: set[str], + rule: CrossGrainRule, + reviewed_unbound_higher_targets: Mapping[str, Mapping[str, object]] | None, +) -> list[dict[str, Any]]: + reviewed = reviewed_unbound_higher_targets or {} + unbound: list[dict[str, Any]] = [] + for bridge in rule.bridges: + higher = set(bridge.higher_target_ids) + selected = bound_higher_targets & higher + if not selected or selected == higher: + continue + missing = sorted(higher - selected) + unreviewed = [target_id for target_id in missing if target_id not in reviewed] + if unreviewed: + raise ValueError( + f"cross-grain bridge {bridge.bridge_id!r} is partially bound; " + f"missing higher target(s) {missing}; missing target(s) that " + f"lack a reviewed exclusion: {unreviewed}." + ) + unbound.append( + { + "bridge_id": bridge.bridge_id, + "missing": missing, + "basis": "reviewed_exclusion", + "records": { + target_id: dict(reviewed[target_id]) for target_id in missing + }, + } + ) + return unbound + + def _surface_columns(frame: pd.DataFrame) -> dict[str, str]: aliases = { "grain": ("grain", "area_type"), @@ -505,8 +641,7 @@ def _measurement_signature( if not isinstance(measurement, Mapping): raise ValueError("cross-grain contract measurement must be a mapping.") return tuple( - (field, _canonical_signature_value(measurement.get(field))) - for field in fields + (field, _canonical_signature_value(measurement.get(field))) for field in fields ) @@ -530,7 +665,9 @@ def _sort_key(member: Any) -> str: def _freeze(value: Any) -> Any: if isinstance(value, Mapping): - return tuple(sorted((str(key), _freeze(member)) for key, member in value.items())) + return tuple( + sorted((str(key), _freeze(member)) for key, member in value.items()) + ) if isinstance(value, (set, frozenset)): # A set has no order to preserve; sort for a deterministic signature. return tuple(sorted((_freeze(member) for member in value), key=_sort_key)) @@ -552,6 +689,39 @@ def _contract_target_id(side: str) -> str | None: return side.removeprefix("contract:") +def _validate_licensed_empty_legs( + licensed_empty_legs: Mapping[str, frozenset[str]] | None, +) -> None: + if licensed_empty_legs is None: + return + if not isinstance(licensed_empty_legs, Mapping): + raise TypeError("licensed_empty_legs must be a mapping.") + for target_id, legs in licensed_empty_legs.items(): + if not isinstance(target_id, str) or not target_id.strip(): + raise ValueError("licensed_empty_legs target ids must be nonblank strings.") + if not isinstance(legs, frozenset): + raise TypeError(f"licensed_empty_legs[{target_id!r}] must be a frozenset.") + if any(not isinstance(leg, str) or not leg.strip() for leg in legs): + raise ValueError( + f"licensed_empty_legs[{target_id!r}] must contain nonblank strings." + ) + + +def _licensed_legs_for_target( + target_id: str, + licensed_empty_legs: Mapping[str, frozenset[str]] | None, +) -> frozenset[str]: + if licensed_empty_legs is None: + return frozenset() + canonical = _contract_target_id(target_id) + aliases = {target_id} + if canonical is not None: + aliases.update((canonical, f"contract:{canonical}")) + return frozenset( + leg for alias in aliases for leg in licensed_empty_legs.get(alias, frozenset()) + ) + + def _inconsistency_identity( kind: str, bridge_id: str, @@ -561,7 +731,9 @@ def _inconsistency_identity( return bridge_id payload = json.dumps(_json_safe(signature), sort_keys=True, separators=(",", ":")) digest = hashlib.sha256(payload.encode()).hexdigest()[:12] - concept = next((str(value) for field, value in signature if field == "concept"), "target") + concept = next( + (str(value) for field, value in signature if field == "concept"), "target" + ) return f"exact:{concept}:{digest}" @@ -615,9 +787,7 @@ def _winning_controls( for bridge in rule.bridges if bridge.bridge_id == group.bridge_id ) - missing = sorted( - set(bridge.higher_target_ids) - set(deduplicated) - ) + missing = sorted(set(bridge.higher_target_ids) - set(deduplicated)) if missing: raise ValueError( f"cross-grain bridge {bridge.bridge_id!r} is partially " @@ -643,8 +813,7 @@ def _winning_controls( leg = str(rule.leg_of_area(row["geography_id"])) if not leg: raise ValueError( - f"cross-grain winning area {row['geography_id']!r} maps to a " - "blank leg." + f"cross-grain winning area {row['geography_id']!r} maps to a blank leg." ) by_leg.setdefault(leg, []).append(row) return [ @@ -656,9 +825,7 @@ def _winning_controls( { target_id for member in members - if ( - target_id := _contract_target_id(member["target_id"]) - ) + if (target_id := _contract_target_id(member["target_id"])) is not None } ) diff --git a/packages/microcosm-build/src/microcosm/build/gates.py b/packages/microcosm-build/src/microcosm/build/gates.py index a74a95b00..3db15ec96 100644 --- a/packages/microcosm-build/src/microcosm/build/gates.py +++ b/packages/microcosm-build/src/microcosm/build/gates.py @@ -2429,6 +2429,7 @@ def area_support_gate( minimum_rows: int, minimum_effective_sample_size: float, minimum_distinct_sources: int, + reviewed_exclusions: Mapping[str, Mapping[str, object]] | None = None, ) -> GateResult: """Require adequate positive-weight support in every declared local area. @@ -2521,10 +2522,14 @@ def area_support_gate( if not np.isfinite(values).all() or (values < 0).any(): raise ValueError("area_support contains invalid support values.") + exclusions = {} if reviewed_exclusions is None else dict(reviewed_exclusions) failures: list[str] = [] + used_exclusions: dict[str, dict[str, object]] = {} + stale_exclusions: list[str] = [] for row in rows.sort_values(["geography_level", "area_code"]).itertuples( index=False ): + key = f"{row.geography_level}/{row.area_code}" shortfalls = [] if row.nonzero_households < minimum_rows: shortfalls.append(f"rows {int(row.nonzero_households)} < {minimum_rows}") @@ -2540,10 +2545,30 @@ def area_support_gate( f"{int(row.nonzero_source_households)} < " f"{minimum_distinct_sources}" ) - if shortfalls: + record = exclusions.get(key) + if record is not None and shortfalls: + used_exclusions[key] = { + "shortfalls": shortfalls, + "rows": int(row.nonzero_households), + "ess": float(row.effective_sample_size), + "sources": int(row.nonzero_source_households), + "record": dict(record), + } + elif record is not None: + stale_exclusions.append(key) failures.append( - f"{row.geography_level}/{row.area_code}: " + ", ".join(shortfalls) + f"{key}: reviewed exclusion is stale; every support floor is met, " + "so retire the exclusion." ) + elif shortfalls: + failures.append(f"{key}: " + ", ".join(shortfalls)) + + known_keys = {f"{level}/{code}" for level, code in expected_pairs} + unknown_exclusions = sorted(set(exclusions) - known_keys) + failures.extend( + f"{key}: reviewed exclusion is unknown to the area roster." + for key in unknown_exclusions + ) by_level: dict[str, dict[str, object]] = {} for level in levels: @@ -2571,6 +2596,10 @@ def area_support_gate( "by_geography_level": by_level, "areas_checked": len(expected_pairs), "areas_failed": len(failures), + "reviewed_exclusions": used_exclusions, + "excluded_area_count": len(used_exclusions), + "stale_exclusions": stale_exclusions, + "unknown_exclusions": unknown_exclusions, }, ) diff --git a/packages/microcosm-build/src/microcosm/build/target_reference_authoring.py b/packages/microcosm-build/src/microcosm/build/target_reference_authoring.py index a7d1f89ce..7629404be 100644 --- a/packages/microcosm-build/src/microcosm/build/target_reference_authoring.py +++ b/packages/microcosm-build/src/microcosm/build/target_reference_authoring.py @@ -258,6 +258,7 @@ def author_area_target_references( active_rows: list[dict[str, Any]] = [] target_entries: dict[str, Any] = {} + uprating_holds: list[dict[str, str]] = [] for target in contract.get("targets", ()): target_id = str(target["target_id"]) @@ -336,16 +337,26 @@ def author_area_target_references( "the candidate now compiles." ) spec = registry.specs[0] + resolved_period = str(spec.metadata.get("ledger_fact_period", "")) + _apply_uprating_hold(row, resolved_period, config.target_period) + if "uprating_from_period" in row: + uprating_holds.append( + { + "name": row["name"], + "target_id": target_id, + "geography_level": geography_level, + "geography_id": area_id, + "from": str(row["uprating_from_period"]), + "to": str(row["uprating_to_period"]), + } + ) active_rows.append(row) entry.update( { "status": "active", "resolved_period": spec.period, "resolved_value": spec.value, - "resolved_fact_period": spec.metadata.get( - "ledger_fact_period", - "", - ), + "resolved_fact_period": resolved_period, "resolved_fact_key": _json_safe_ledger_id( spec.metadata.get("ledger_aggregate_fact_key", "") ), @@ -398,6 +409,10 @@ def author_area_target_references( } for deferral in config.area_signed_deferrals ], + "uprating_holds": uprating_holds, + "holds_by_target": dict( + sorted(Counter(row["target_id"] for row in uprating_holds).items()) + ), "targets": target_entries, } return AuthoredTargetReferences(tuple(active_rows), report) diff --git a/packages/microcosm-build/src/microcosm/build/uk/country_package.json b/packages/microcosm-build/src/microcosm/build/uk/country_package.json index b3e38b70a..7fdc2720a 100644 --- a/packages/microcosm-build/src/microcosm/build/uk/country_package.json +++ b/packages/microcosm-build/src/microcosm/build/uk/country_package.json @@ -252,6 +252,11 @@ "kind": "legacy_json", "schema_id": "legacy_json" }, + { + "path": "local_area_support_exclusions.json", + "kind": "legacy_json", + "schema_id": "legacy_json" + }, { "path": "uk_local_target_census.json", "kind": "legacy_json", diff --git a/packages/microcosm-build/src/microcosm/build/uk/gates.json b/packages/microcosm-build/src/microcosm/build/uk/gates.json index f4d7511bf..efb84c369 100644 --- a/packages/microcosm-build/src/microcosm/build/uk/gates.json +++ b/packages/microcosm-build/src/microcosm/build/uk/gates.json @@ -769,9 +769,10 @@ ], "minimum_rows": 50, "minimum_effective_sample_size": 50.0, - "minimum_distinct_sources": 50 + "minimum_distinct_sources": 50, + "exclusions_resource": "local_area_support_exclusions.json" }, - "notes": "Both local grains are blocking from birth. Each declared area needs at least 50 positive-weight rows, Kish ESS 50, and 50 distinct positive-weight source households. The constituency K=4 receipt measured minima of 101 rows, ESS 86.4, and 97 sources; a local-authority miss reopens K or requires a separately reviewed exclusion." + "notes": "Both local grains are blocking from birth. Each declared area needs at least 50 positive-weight rows, Kish ESS 50, and 50 distinct positive-weight source households. Reviewed exclusions carry measured shortfalls; a stale exclusion fails and must be retired. The constituency K=4 receipt measured minima of 101 rows, ESS 86.4, and 97 sources; a local-authority miss reopens K or requires a separately reviewed exclusion." }, { "id": "uk_local_target_fit", diff --git a/packages/microcosm-build/src/microcosm/build/uk/local_area_support_exclusions.json b/packages/microcosm-build/src/microcosm/build/uk/local_area_support_exclusions.json new file mode 100644 index 000000000..2cc9d22cb --- /dev/null +++ b/packages/microcosm-build/src/microcosm/build/uk/local_area_support_exclusions.json @@ -0,0 +1,5 @@ +{ + "schema_version": 2, + "description": "Reviewed UK local-area support-floor exclusions. The register ships empty in PR A; each future entry must carry measured shortfalls and an in-force adjudication.", + "exclusions": {} +} diff --git a/packages/microcosm-build/src/microcosm/build/uk/local_target_reference_membership.json b/packages/microcosm-build/src/microcosm/build/uk/local_target_reference_membership.json index 8f0dd576d..558420794 100644 --- a/packages/microcosm-build/src/microcosm/build/uk/local_target_reference_membership.json +++ b/packages/microcosm-build/src/microcosm/build/uk/local_target_reference_membership.json @@ -3218,6 +3218,136647 @@ ] } ], + "uprating_holds": [ + { + "name": "hmrc.self_employment_income.amount@E14001063", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001064", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001065", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001066", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001067", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001068", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001069", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001070", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001071", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001072", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001073", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001074", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001075", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001076", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001077", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001078", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001079", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001080", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001081", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001082", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001083", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001084", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001085", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001086", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001087", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001088", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001089", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001090", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001091", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001092", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001093", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001094", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001095", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001096", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001097", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001098", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001099", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001100", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001101", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001102", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001103", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001104", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001105", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001106", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001107", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001108", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001109", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001110", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001111", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001112", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001113", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001114", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001115", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001116", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001117", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001118", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001119", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001120", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001121", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001122", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001123", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001124", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001125", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001126", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001127", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001128", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001129", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001130", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001131", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001132", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001133", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001134", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001135", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001136", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001137", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001138", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001139", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001140", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001141", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001142", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001143", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001144", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001145", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001146", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001147", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001148", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001149", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001150", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001151", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001152", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001153", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001154", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001155", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001156", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001157", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001158", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001159", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001160", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001161", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001162", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001163", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001164", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001165", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001166", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001167", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001168", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001169", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001170", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001171", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001172", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001173", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001174", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001175", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001176", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001177", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001178", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001179", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001180", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001181", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001182", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001183", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001184", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001185", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001186", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001187", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001188", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001189", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001190", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001191", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001192", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001193", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001194", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001195", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001196", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001197", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001198", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001199", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001200", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001201", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001202", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001203", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001204", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001205", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001206", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001207", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001208", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001209", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001210", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001211", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001212", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001213", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001214", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001215", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001216", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001217", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001218", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001219", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001220", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001221", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001222", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001223", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001224", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001225", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001226", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001227", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001228", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001229", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001230", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001231", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001232", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001233", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001234", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001235", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001236", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001237", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001238", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001239", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001240", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001241", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001242", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001243", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001244", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001245", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001246", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001247", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001248", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001249", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001250", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001251", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001252", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001253", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001254", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001255", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001256", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001257", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001258", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001259", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001260", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001261", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001262", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001263", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001264", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001265", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001266", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001267", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001268", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001269", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001270", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001271", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001272", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001273", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001274", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001275", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001276", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001277", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001278", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001279", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001280", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001281", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001282", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001283", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001284", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001285", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001286", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001287", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001288", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001289", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001290", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001291", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001292", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001293", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001294", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001295", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001296", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001297", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001298", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001299", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001300", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001301", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001302", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001303", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001304", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001305", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001306", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001307", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001308", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001309", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001310", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001311", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001312", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001313", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001314", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001315", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001316", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001317", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001318", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001319", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001320", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001321", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001322", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001323", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001324", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001325", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001326", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001327", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001328", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001329", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001330", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001331", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001332", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001333", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001334", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001335", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001336", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001337", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001338", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001339", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001340", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001341", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001342", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001343", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001344", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001345", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001346", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001347", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001348", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001349", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001350", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001351", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001352", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001353", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001354", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001355", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001356", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001357", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001358", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001359", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001360", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001361", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001362", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001363", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001364", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001365", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001366", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001367", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001368", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001369", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001370", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001371", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001372", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001373", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001374", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001375", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001376", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001377", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001378", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001379", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001380", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001381", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001382", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001383", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001384", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001385", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001386", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001387", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001388", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001389", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001390", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001391", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001392", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001393", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001394", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001395", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001396", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001397", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001398", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001399", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001400", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001401", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001402", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001403", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001404", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001405", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001406", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001407", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001408", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001409", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001410", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001411", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001412", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001413", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001414", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001415", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001417", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001418", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001419", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001420", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001421", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001422", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001423", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001424", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001425", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001426", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001427", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001428", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001429", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001430", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001431", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001432", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001433", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001434", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001435", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001436", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001437", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001438", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001439", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001440", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001441", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001442", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001443", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001444", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001445", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001446", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001447", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001448", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001449", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001450", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001451", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001452", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001453", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001454", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001455", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001456", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001457", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001458", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001459", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001460", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001461", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001462", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001463", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001464", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001465", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001466", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001467", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001468", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001469", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001470", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001471", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001472", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001473", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001474", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001475", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001476", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001477", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001478", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001479", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001480", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001481", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001482", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001483", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001484", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001485", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001486", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001487", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001488", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001489", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001490", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001491", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001492", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001493", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001494", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001495", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001496", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001497", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001498", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001499", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001500", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001501", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001502", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001503", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001504", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001505", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001506", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001507", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001508", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001509", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001510", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001511", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001512", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001513", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001514", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001515", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001516", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001517", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001518", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001519", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001520", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001521", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001522", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001523", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001524", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001525", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001526", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001527", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001528", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001529", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001530", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001531", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001532", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001533", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001534", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001535", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001536", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001537", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001538", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001539", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001540", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001541", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001542", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001543", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001544", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001545", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001546", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001547", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001548", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001549", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001550", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001551", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001552", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001553", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001554", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001555", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001556", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001557", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001558", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001559", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001560", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001561", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001562", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001563", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001564", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001565", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001566", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001567", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001568", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001569", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001570", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001571", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001572", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001573", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001574", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001575", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001576", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001577", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001578", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001579", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001580", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001581", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001582", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001583", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001584", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001585", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001586", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001587", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001588", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001589", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001590", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001591", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001592", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001593", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001594", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001595", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001596", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001597", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001598", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001599", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001600", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001601", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001602", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001603", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001604", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E14001605", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000007", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000015", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000016", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000017", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N05000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000027", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000045", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000048", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000051", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000060", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000061", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000062", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000063", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000064", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000065", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000066", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000067", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000068", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000069", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000070", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000071", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000072", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000073", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000074", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000075", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000076", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000077", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000078", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000079", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000080", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000081", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000082", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000083", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000084", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000085", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000086", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000087", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000088", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000089", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000090", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000091", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000092", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000093", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000094", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000095", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000096", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000097", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000098", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000099", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000100", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000101", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000102", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000103", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000104", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000105", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000106", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000107", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000108", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000109", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000110", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S14000111", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000081", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000082", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000083", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000084", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000085", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000086", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000087", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000088", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000089", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000090", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000091", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000092", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000093", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000094", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000095", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000096", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000097", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000098", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000099", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000100", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000101", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000102", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000103", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000104", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000105", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000106", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000107", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000108", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000109", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000110", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000111", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W07000112", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000007", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000015", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000016", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000017", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000019", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000020", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000022", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000023", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000024", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000025", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000026", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000030", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000031", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000032", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000033", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000034", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000035", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000036", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000037", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000038", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000039", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000040", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000041", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000042", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000043", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000044", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000045", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000046", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000047", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000049", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000050", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000051", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000052", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000054", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000055", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000056", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000057", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000058", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000059", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000060", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000061", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000062", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000063", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000064", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000065", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E06000066", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000032", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000033", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000034", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000035", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000036", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000037", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000038", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000039", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000040", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000041", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000042", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000043", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000044", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000045", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000046", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000047", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000061", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000062", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000063", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000064", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000065", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000066", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000067", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000068", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000069", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000070", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000071", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000072", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000073", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000074", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000075", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000076", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000077", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000078", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000079", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000080", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000081", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000082", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000083", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000084", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000085", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000086", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000087", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000088", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000089", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000090", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000091", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000092", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000093", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000094", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000095", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000096", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000098", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000099", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000102", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000103", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000105", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000106", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000107", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000108", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000109", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000110", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000111", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000112", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000113", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000114", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000115", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000116", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000117", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000118", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000119", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000120", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000121", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000122", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000123", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000124", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000125", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000126", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000127", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000128", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000129", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000130", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000131", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000132", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000133", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000134", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000135", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000136", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000137", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000138", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000139", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000140", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000141", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000142", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000143", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000144", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000145", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000146", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000147", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000148", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000149", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000170", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000171", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000172", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000173", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000174", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000175", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000176", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000177", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000178", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000179", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000180", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000181", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000192", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000193", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000194", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000195", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000196", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000197", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000198", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000199", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000200", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000202", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000203", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000207", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000208", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000209", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000210", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000211", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000212", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000213", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000214", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000215", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000216", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000217", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000218", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000219", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000220", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000221", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000222", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000223", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000224", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000225", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000226", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000227", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000228", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000229", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000234", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000235", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000236", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000237", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000238", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000239", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000240", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000241", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000242", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000243", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000244", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E07000245", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000007", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000015", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000016", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000017", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000019", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000022", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000023", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000024", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000025", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000026", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000027", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000028", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000029", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000030", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000031", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000032", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000033", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000034", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000035", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000036", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E08000037", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000007", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000015", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000016", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000017", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000019", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000020", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000022", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000023", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000024", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000025", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000026", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000027", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000028", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000029", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000030", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000031", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000032", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@E09000033", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000007", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@N09000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000017", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000019", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000020", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000023", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000026", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000027", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000028", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000029", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000030", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000033", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000034", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000035", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000036", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000038", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000039", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000040", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000041", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000042", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000045", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000047", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000048", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000049", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@S12000050", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000001", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000002", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000003", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000004", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000005", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000006", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000008", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000009", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000010", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000011", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000012", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000013", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000014", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000015", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000016", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000018", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000019", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000020", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000021", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000022", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000023", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.amount@W06000024", + "target_id": "hmrc.self_employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001063", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001064", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001065", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001066", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001067", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001068", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001069", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001070", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001071", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001072", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001073", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001074", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001075", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001076", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001077", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001078", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001079", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001080", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001081", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001082", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001083", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001084", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001085", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001086", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001087", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001088", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001089", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001090", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001091", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001092", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001093", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001094", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001095", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001096", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001097", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001098", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001099", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001100", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001101", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001102", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001103", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001104", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001105", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001106", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001107", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001108", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001109", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001110", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001111", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001112", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001113", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001114", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001115", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001116", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001117", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001118", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001119", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001120", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001121", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001122", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001123", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001124", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001125", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001126", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001127", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001128", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001129", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001130", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001131", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001132", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001133", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001134", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001135", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001136", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001137", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001138", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001139", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001140", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001141", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001142", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001143", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001144", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001145", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001146", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001147", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001148", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001149", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001150", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001151", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001152", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001153", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001154", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001155", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001156", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001157", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001158", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001159", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001160", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001161", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001162", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001163", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001164", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001165", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001166", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001167", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001168", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001169", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001170", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001171", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001172", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001173", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001174", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001175", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001176", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001177", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001178", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001179", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001180", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001181", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001182", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001183", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001184", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001185", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001186", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001187", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001188", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001189", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001190", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001191", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001192", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001193", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001194", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001195", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001196", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001197", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001198", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001199", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001200", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001201", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001202", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001203", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001204", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001205", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001206", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001207", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001208", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001209", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001210", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001211", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001212", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001213", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001214", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001215", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001216", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001217", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001218", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001219", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001220", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001221", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001222", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001223", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001224", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001225", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001226", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001227", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001228", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001229", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001230", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001231", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001232", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001233", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001234", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001235", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001236", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001237", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001238", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001239", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001240", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001241", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001242", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001243", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001244", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001245", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001246", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001247", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001248", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001249", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001250", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001251", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001252", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001253", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001254", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001255", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001256", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001257", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001258", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001259", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001260", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001261", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001262", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001263", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001264", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001265", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001266", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001267", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001268", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001269", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001270", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001271", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001272", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001273", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001274", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001275", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001276", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001277", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001278", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001279", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001280", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001281", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001282", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001283", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001284", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001285", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001286", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001287", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001288", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001289", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001290", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001291", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001292", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001293", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001294", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001295", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001296", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001297", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001298", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001299", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001300", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001301", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001302", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001303", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001304", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001305", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001306", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001307", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001308", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001309", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001310", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001311", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001312", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001313", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001314", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001315", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001316", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001317", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001318", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001319", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001320", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001321", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001322", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001323", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001324", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001325", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001326", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001327", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001328", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001329", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001330", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001331", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001332", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001333", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001334", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001335", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001336", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001337", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001338", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001339", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001340", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001341", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001342", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001343", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001344", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001345", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001346", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001347", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001348", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001349", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001350", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001351", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001352", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001353", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001354", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001355", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001356", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001357", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001358", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001359", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001360", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001361", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001362", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001363", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001364", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001365", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001366", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001367", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001368", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001369", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001370", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001371", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001372", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001373", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001374", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001375", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001376", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001377", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001378", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001379", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001380", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001381", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001382", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001383", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001384", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001385", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001386", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001387", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001388", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001389", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001390", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001391", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001392", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001393", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001394", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001395", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001396", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001397", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001398", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001399", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001400", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001401", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001402", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001403", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001404", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001405", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001406", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001407", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001408", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001409", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001410", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001411", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001412", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001413", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001414", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001415", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001416", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001417", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001418", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001419", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001420", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001421", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001422", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001423", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001424", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001425", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001426", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001427", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001428", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001429", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001430", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001431", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001432", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001433", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001434", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001435", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001436", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001437", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001438", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001439", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001440", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001441", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001442", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001443", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001444", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001445", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001446", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001447", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001448", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001449", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001450", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001451", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001452", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001453", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001454", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001455", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001456", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001457", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001458", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001459", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001460", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001461", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001462", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001463", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001464", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001465", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001466", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001467", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001468", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001469", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001470", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001471", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001472", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001473", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001474", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001475", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001476", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001477", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001478", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001479", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001480", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001481", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001482", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001483", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001484", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001485", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001486", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001487", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001488", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001489", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001490", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001491", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001492", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001493", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001494", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001495", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001496", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001497", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001498", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001499", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001500", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001501", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001502", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001503", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001504", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001505", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001506", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001507", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001508", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001509", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001510", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001511", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001512", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001513", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001514", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001515", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001516", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001517", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001518", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001519", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001520", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001521", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001522", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001523", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001524", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001525", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001526", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001527", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001528", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001529", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001530", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001531", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001532", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001533", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001534", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001535", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001536", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001537", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001538", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001539", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001540", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001541", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001542", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001543", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001544", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001545", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001546", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001547", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001548", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001549", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001550", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001551", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001552", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001553", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001554", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001555", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001556", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001557", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001558", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001559", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001560", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001561", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001562", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001563", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001564", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001565", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001566", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001567", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001568", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001569", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001570", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001571", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001572", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001573", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001574", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001575", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001576", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001577", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001578", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001579", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001580", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001581", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001582", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001583", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001584", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001585", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001586", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001587", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001588", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001589", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001590", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001591", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001592", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001593", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001594", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001595", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001596", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001597", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001598", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001599", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001600", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001601", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001602", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001603", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001604", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E14001605", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000007", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000015", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000016", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000017", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N05000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000027", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000045", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000048", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000051", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000060", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000061", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000062", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000063", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000064", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000065", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000066", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000067", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000068", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000069", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000070", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000071", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000072", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000073", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000074", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000075", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000076", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000077", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000078", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000079", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000080", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000081", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000082", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000083", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000084", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000085", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000086", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000087", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000088", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000089", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000090", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000091", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000092", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000093", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000094", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000095", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000096", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000097", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000098", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000099", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000100", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000101", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000102", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000103", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000104", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000105", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000106", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000107", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000108", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000109", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000110", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S14000111", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000081", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000082", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000083", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000084", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000085", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000086", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000087", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000088", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000089", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000090", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000091", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000092", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000093", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000094", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000095", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000096", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000097", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000098", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000099", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000100", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000101", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000102", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000103", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000104", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000105", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000106", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000107", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000108", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000109", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000110", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000111", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W07000112", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000007", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000015", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000016", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000017", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000019", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000020", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000022", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000023", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000024", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000025", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000026", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000030", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000031", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000032", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000033", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000034", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000035", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000036", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000037", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000038", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000039", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000040", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000041", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000042", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000043", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000044", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000045", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000046", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000047", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000049", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000050", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000051", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000052", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000054", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000055", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000056", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000057", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000058", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000059", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000060", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000061", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000062", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000063", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000064", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000065", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E06000066", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000032", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000033", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000034", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000035", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000036", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000037", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000038", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000039", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000040", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000041", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000042", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000043", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000044", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000045", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000046", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000047", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000061", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000062", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000063", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000064", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000065", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000066", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000067", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000068", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000069", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000070", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000071", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000072", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000073", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000074", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000075", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000076", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000077", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000078", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000079", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000080", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000081", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000082", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000083", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000084", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000085", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000086", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000087", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000088", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000089", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000090", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000091", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000092", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000093", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000094", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000095", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000096", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000098", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000099", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000102", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000103", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000105", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000106", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000107", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000108", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000109", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000110", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000111", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000112", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000113", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000114", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000115", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000116", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000117", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000118", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000119", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000120", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000121", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000122", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000123", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000124", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000125", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000126", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000127", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000128", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000129", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000130", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000131", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000132", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000133", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000134", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000135", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000136", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000137", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000138", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000139", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000140", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000141", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000142", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000143", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000144", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000145", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000146", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000147", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000148", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000149", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000170", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000171", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000172", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000173", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000174", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000175", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000176", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000177", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000178", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000179", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000180", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000181", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000192", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000193", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000194", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000195", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000196", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000197", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000198", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000199", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000200", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000202", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000203", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000207", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000208", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000209", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000210", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000211", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000212", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000213", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000214", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000215", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000216", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000217", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000218", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000219", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000220", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000221", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000222", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000223", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000224", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000225", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000226", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000227", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000228", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000229", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000234", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000235", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000236", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000237", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000238", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000239", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000240", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000241", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000242", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000243", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000244", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E07000245", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000007", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000015", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000016", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000017", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000019", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000022", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000023", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000024", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000025", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000026", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000027", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000028", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000029", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000030", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000031", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000032", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000033", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000034", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000035", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000036", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E08000037", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000007", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000015", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000016", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000017", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000019", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000020", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000022", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000023", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000024", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000025", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000026", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000027", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000028", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000029", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000030", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000031", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000032", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@E09000033", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000007", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@N09000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000017", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000019", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000020", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000023", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000026", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000027", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000028", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000029", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000030", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000033", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000034", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000035", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000036", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000038", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000039", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000040", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000041", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000042", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000045", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000047", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000048", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000049", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@S12000050", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000001", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000002", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000003", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000004", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000005", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000006", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000008", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000009", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000010", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000011", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000012", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000013", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000014", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000015", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000016", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000018", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000019", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000020", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000021", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000022", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000023", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.self_employment_income.count@W06000024", + "target_id": "hmrc.self_employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001063", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001064", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001065", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001066", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001067", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001068", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001069", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001070", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001071", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001072", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001073", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001074", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001075", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001076", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001077", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001078", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001079", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001080", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001081", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001082", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001083", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001084", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001085", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001086", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001087", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001088", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001089", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001090", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001091", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001092", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001093", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001094", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001095", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001096", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001097", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001098", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001099", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001100", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001101", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001102", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001103", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001104", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001105", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001106", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001107", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001108", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001109", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001110", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001111", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001112", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001113", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001114", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001115", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001116", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001117", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001118", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001119", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001120", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001121", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001122", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001123", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001124", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001125", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001126", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001127", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001128", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001129", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001130", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001131", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001132", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001133", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001134", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001135", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001136", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001137", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001138", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001139", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001140", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001141", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001142", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001143", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001144", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001145", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001146", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001147", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001148", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001149", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001150", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001151", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001152", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001153", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001154", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001155", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001156", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001157", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001158", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001159", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001160", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001161", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001162", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001163", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001164", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001165", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001166", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001167", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001168", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001169", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001170", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001171", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001172", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001173", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001174", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001175", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001176", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001177", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001178", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001179", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001180", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001181", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001182", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001183", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001184", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001185", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001186", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001187", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001188", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001189", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001190", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001191", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001192", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001193", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001194", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001195", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001196", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001197", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001198", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001199", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001200", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001201", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001202", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001203", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001204", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001205", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001206", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001207", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001208", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001209", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001210", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001211", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001212", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001213", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001214", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001215", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001216", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001217", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001218", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001219", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001220", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001221", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001222", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001223", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001224", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001225", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001226", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001227", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001228", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001229", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001230", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001231", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001232", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001233", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001234", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001235", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001236", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001237", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001238", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001239", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001240", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001241", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001242", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001243", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001244", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001245", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001246", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001247", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001248", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001249", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001250", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001251", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001252", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001253", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001254", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001255", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001256", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001257", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001258", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001259", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001260", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001261", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001262", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001263", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001264", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001265", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001266", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001267", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001268", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001269", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001270", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001271", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001272", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001273", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001274", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001275", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001276", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001277", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001278", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001279", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001280", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001281", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001282", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001283", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001284", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001285", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001286", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001287", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001288", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001289", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001290", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001291", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001292", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001293", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001294", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001295", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001296", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001297", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001298", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001299", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001300", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001301", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001302", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001303", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001304", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001305", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001306", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001307", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001308", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001309", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001310", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001311", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001312", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001313", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001314", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001315", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001316", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001317", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001318", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001319", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001320", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001321", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001322", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001323", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001324", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001325", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001326", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001327", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001328", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001329", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001330", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001331", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001332", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001333", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001334", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001335", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001336", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001337", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001338", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001339", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001340", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001341", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001342", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001343", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001344", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001345", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001346", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001347", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001348", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001349", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001350", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001351", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001352", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001353", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001354", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001355", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001356", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001357", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001358", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001359", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001360", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001361", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001362", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001363", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001364", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001365", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001366", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001367", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001368", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001369", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001370", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001371", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001372", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001373", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001374", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001375", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001376", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001377", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001378", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001379", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001380", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001381", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001382", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001383", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001384", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001385", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001386", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001387", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001388", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001389", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001390", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001391", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001392", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001393", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001394", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001395", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001396", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001397", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001398", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001399", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001400", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001401", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001402", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001403", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001404", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001405", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001406", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001407", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001408", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001409", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001410", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001411", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001412", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001413", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001414", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001415", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001416", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001417", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001418", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001419", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001420", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001421", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001422", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001423", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001424", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001425", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001426", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001427", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001428", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001429", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001430", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001431", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001432", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001433", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001434", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001435", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001436", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001437", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001438", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001439", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001440", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001441", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001442", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001443", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001444", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001445", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001446", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001447", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001448", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001449", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001450", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001451", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001452", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001453", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001454", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001455", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001456", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001457", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001458", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001459", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001460", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001461", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001462", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001463", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001464", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001465", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001466", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001467", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001468", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001469", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001470", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001471", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001472", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001473", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001474", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001475", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001476", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001477", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001478", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001479", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001480", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001481", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001482", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001483", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001484", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001485", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001486", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001487", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001488", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001489", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001490", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001491", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001492", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001493", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001494", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001495", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001496", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001497", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001498", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001499", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001500", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001501", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001502", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001503", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001504", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001505", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001506", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001507", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001508", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001509", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001510", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001511", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001512", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001513", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001514", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001515", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001516", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001517", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001518", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001519", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001520", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001521", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001522", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001523", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001524", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001525", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001526", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001527", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001528", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001529", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001530", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001531", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001532", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001533", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001534", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001535", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001536", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001537", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001538", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001539", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001540", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001541", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001542", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001543", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001544", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001545", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001546", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001547", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001548", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001549", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001550", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001551", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001552", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001553", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001554", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001555", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001556", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001557", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001558", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001559", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001560", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001561", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001562", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001563", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001564", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001565", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001566", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001567", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001568", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001569", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001570", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001571", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001572", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001573", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001574", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001575", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001576", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001577", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001578", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001579", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001580", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001581", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001582", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001583", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001584", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001585", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001586", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001587", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001588", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001589", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001590", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001591", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001592", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001593", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001594", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001595", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001596", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001597", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001598", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001599", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001600", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001601", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001602", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001603", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001604", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E14001605", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000007", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000015", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000016", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000017", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N05000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000027", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000045", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000048", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000051", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000060", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000061", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000062", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000063", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000064", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000065", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000066", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000067", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000068", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000069", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000070", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000071", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000072", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000073", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000074", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000075", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000076", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000077", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000078", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000079", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000080", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000081", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000082", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000083", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000084", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000085", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000086", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000087", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000088", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000089", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000090", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000091", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000092", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000093", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000094", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000095", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000096", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000097", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000098", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000099", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000100", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000101", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000102", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000103", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000104", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000105", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000106", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000107", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000108", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000109", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000110", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S14000111", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000081", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000082", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000083", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000084", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000085", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000086", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000087", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000088", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000089", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000090", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000091", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000092", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000093", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000094", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000095", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000096", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000097", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000098", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000099", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000100", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000101", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000102", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000103", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000104", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000105", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000106", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000107", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000108", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000109", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000110", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000111", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W07000112", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000007", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000015", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000016", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000017", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000019", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000020", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000022", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000023", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000024", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000025", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000026", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000030", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000031", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000032", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000033", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000034", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000035", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000036", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000037", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000038", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000039", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000040", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000041", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000042", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000043", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000044", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000045", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000046", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000047", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000049", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000050", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000051", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000052", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000054", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000055", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000056", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000057", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000058", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000059", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000060", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000061", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000062", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000063", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000064", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000065", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E06000066", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000032", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000033", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000034", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000035", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000036", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000037", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000038", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000039", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000040", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000041", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000042", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000043", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000044", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000045", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000046", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000047", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000061", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000062", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000063", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000064", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000065", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000066", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000067", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000068", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000069", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000070", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000071", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000072", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000073", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000074", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000075", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000076", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000077", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000078", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000079", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000080", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000081", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000082", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000083", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000084", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000085", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000086", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000087", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000088", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000089", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000090", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000091", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000092", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000093", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000094", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000095", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000096", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000098", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000099", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000102", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000103", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000105", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000106", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000107", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000108", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000109", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000110", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000111", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000112", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000113", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000114", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000115", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000116", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000117", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000118", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000119", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000120", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000121", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000122", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000123", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000124", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000125", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000126", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000127", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000128", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000129", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000130", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000131", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000132", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000133", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000134", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000135", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000136", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000137", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000138", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000139", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000140", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000141", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000142", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000143", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000144", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000145", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000146", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000147", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000148", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000149", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000170", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000171", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000172", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000173", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000174", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000175", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000176", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000177", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000178", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000179", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000180", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000181", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000192", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000193", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000194", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000195", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000196", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000197", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000198", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000199", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000200", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000202", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000203", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000207", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000208", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000209", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000210", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000211", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000212", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000213", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000214", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000215", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000216", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000217", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000218", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000219", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000220", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000221", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000222", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000223", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000224", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000225", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000226", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000227", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000228", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000229", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000234", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000235", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000236", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000237", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000238", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000239", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000240", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000241", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000242", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000243", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000244", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E07000245", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000007", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000015", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000016", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000017", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000019", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000022", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000023", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000024", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000025", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000026", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000027", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000028", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000029", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000030", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000031", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000032", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000033", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000034", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000035", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000036", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E08000037", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000007", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000015", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000016", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000017", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000019", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000020", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000022", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000023", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000024", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000025", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000026", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000027", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000028", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000029", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000030", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000031", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000032", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@E09000033", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000007", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@N09000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000017", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000019", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000020", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000023", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000026", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000027", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000028", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000029", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000030", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000033", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000034", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000035", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000036", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000038", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000039", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000040", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000041", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000042", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000045", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000047", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000048", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000049", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@S12000050", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000001", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000002", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000003", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000004", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000005", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000006", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000008", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000009", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000010", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000011", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000012", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000013", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000014", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000015", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000016", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000018", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000019", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000020", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000021", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000022", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000023", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.amount@W06000024", + "target_id": "hmrc.employment_income.amount", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001063", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001064", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001065", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001066", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001067", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001068", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001069", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001070", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001071", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001072", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001073", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001074", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001075", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001076", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001077", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001078", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001079", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001080", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001081", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001082", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001083", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001084", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001085", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001086", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001087", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001088", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001089", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001090", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001091", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001092", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001093", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001094", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001095", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001096", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001097", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001098", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001099", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001100", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001101", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001102", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001103", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001104", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001105", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001106", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001107", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001108", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001109", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001110", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001111", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001112", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001113", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001114", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001115", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001116", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001117", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001118", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001119", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001120", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001121", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001122", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001123", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001124", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001125", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001126", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001127", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001128", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001129", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001130", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001131", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001132", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001133", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001134", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001135", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001136", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001137", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001138", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001139", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001140", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001141", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001142", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001143", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001144", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001145", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001146", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001147", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001148", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001149", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001150", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001151", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001152", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001153", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001154", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001155", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001156", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001157", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001158", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001159", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001160", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001161", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001162", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001163", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001164", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001165", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001166", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001167", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001168", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001169", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001170", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001171", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001172", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001173", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001174", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001175", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001176", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001177", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001178", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001179", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001180", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001181", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001182", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001183", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001184", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001185", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001186", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001187", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001188", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001189", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001190", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001191", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001192", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001193", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001194", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001195", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001196", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001197", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001198", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001199", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001200", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001201", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001202", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001203", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001204", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001205", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001206", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001207", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001208", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001209", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001210", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001211", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001212", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001213", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001214", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001215", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001216", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001217", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001218", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001219", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001220", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001221", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001222", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001223", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001224", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001225", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001226", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001227", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001228", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001229", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001230", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001231", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001232", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001233", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001234", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001235", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001236", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001237", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001238", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001239", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001240", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001241", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001242", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001243", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001244", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001245", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001246", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001247", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001248", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001249", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001250", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001251", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001252", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001253", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001254", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001255", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001256", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001257", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001258", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001259", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001260", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001261", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001262", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001263", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001264", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001265", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001266", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001267", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001268", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001269", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001270", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001271", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001272", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001273", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001274", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001275", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001276", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001277", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001278", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001279", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001280", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001281", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001282", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001283", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001284", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001285", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001286", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001287", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001288", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001289", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001290", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001291", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001292", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001293", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001294", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001295", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001296", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001297", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001298", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001299", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001300", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001301", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001302", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001303", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001304", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001305", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001306", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001307", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001308", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001309", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001310", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001311", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001312", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001313", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001314", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001315", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001316", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001317", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001318", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001319", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001320", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001321", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001322", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001323", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001324", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001325", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001326", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001327", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001328", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001329", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001330", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001331", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001332", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001333", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001334", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001335", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001336", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001337", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001338", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001339", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001340", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001341", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001342", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001343", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001344", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001345", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001346", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001347", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001348", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001349", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001350", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001351", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001352", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001353", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001354", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001355", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001356", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001357", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001358", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001359", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001360", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001361", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001362", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001363", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001364", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001365", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001366", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001367", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001368", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001369", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001370", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001371", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001372", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001373", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001374", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001375", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001376", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001377", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001378", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001379", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001380", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001381", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001382", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001383", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001384", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001385", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001386", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001387", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001388", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001389", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001390", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001391", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001392", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001393", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001394", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001395", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001396", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001397", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001398", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001399", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001400", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001401", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001402", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001403", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001404", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001405", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001406", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001407", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001408", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001409", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001410", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001411", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001412", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001413", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001414", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001415", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001416", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001417", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001418", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001419", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001420", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001421", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001422", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001423", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001424", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001425", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001426", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001427", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001428", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001429", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001430", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001431", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001432", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001433", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001434", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001435", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001436", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001437", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001438", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001439", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001440", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001441", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001442", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001443", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001444", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001445", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001446", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001447", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001448", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001449", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001450", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001451", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001452", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001453", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001454", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001455", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001456", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001457", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001458", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001459", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001460", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001461", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001462", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001463", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001464", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001465", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001466", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001467", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001468", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001469", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001470", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001471", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001472", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001473", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001474", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001475", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001476", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001477", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001478", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001479", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001480", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001481", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001482", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001483", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001484", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001485", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001486", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001487", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001488", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001489", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001490", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001491", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001492", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001493", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001494", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001495", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001496", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001497", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001498", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001499", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001500", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001501", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001502", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001503", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001504", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001505", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001506", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001507", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001508", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001509", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001510", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001511", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001512", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001513", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001514", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001515", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001516", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001517", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001518", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001519", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001520", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001521", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001522", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001523", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001524", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001525", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001526", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001527", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001528", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001529", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001530", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001531", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001532", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001533", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001534", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001535", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001536", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001537", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001538", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001539", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001540", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001541", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001542", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001543", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001544", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001545", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001546", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001547", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001548", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001549", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001550", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001551", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001552", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001553", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001554", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001555", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001556", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001557", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001558", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001559", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001560", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001561", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001562", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001563", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001564", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001565", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001566", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001567", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001568", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001569", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001570", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001571", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001572", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001573", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001574", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001575", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001576", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001577", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001578", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001579", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001580", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001581", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001582", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001583", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001584", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001585", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001586", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001587", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001588", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001589", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001590", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001591", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001592", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001593", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001594", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001595", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001596", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001597", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001598", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001599", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001600", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001601", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001602", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001603", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001604", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E14001605", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000007", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000015", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000016", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000017", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N05000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000027", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000045", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000048", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000051", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000060", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000061", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000062", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000063", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000064", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000065", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000066", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000067", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000068", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000069", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000070", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000071", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000072", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000073", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000074", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000075", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000076", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000077", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000078", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000079", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000080", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000081", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000082", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000083", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000084", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000085", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000086", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000087", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000088", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000089", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000090", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000091", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000092", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000093", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000094", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000095", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000096", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000097", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000098", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000099", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000100", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000101", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000102", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000103", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000104", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000105", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000106", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000107", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000108", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000109", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000110", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S14000111", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000081", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000082", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000083", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000084", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000085", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000086", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000087", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000088", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000089", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000090", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000091", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000092", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000093", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000094", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000095", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000096", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000097", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000098", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000099", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000100", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000101", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000102", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000103", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000104", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000105", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000106", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000107", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000108", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000109", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000110", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000111", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W07000112", + "target_id": "hmrc.employment_income.count", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000007", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000015", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000016", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000017", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000019", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000020", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000022", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000023", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000024", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000025", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000026", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000030", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000031", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000032", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000033", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000034", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000035", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000036", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000037", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000038", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000039", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000040", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000041", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000042", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000043", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000044", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000045", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000046", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000047", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000049", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000050", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000051", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000052", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000054", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000055", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000056", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000057", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000058", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000059", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000060", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000061", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000062", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000063", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000064", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000065", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E06000066", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000032", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000033", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000034", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000035", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000036", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000037", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000038", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000039", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000040", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000041", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000042", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000043", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000044", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000045", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000046", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000047", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000061", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000062", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000063", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000064", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000065", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000066", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000067", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000068", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000069", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000070", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000071", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000072", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000073", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000074", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000075", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000076", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000077", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000078", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000079", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000080", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000081", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000082", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000083", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000084", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000085", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000086", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000087", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000088", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000089", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000090", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000091", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000092", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000093", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000094", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000095", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000096", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000098", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000099", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000102", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000103", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000105", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000106", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000107", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000108", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000109", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000110", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000111", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000112", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000113", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000114", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000115", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000116", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000117", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000118", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000119", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000120", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000121", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000122", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000123", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000124", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000125", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000126", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000127", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000128", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000129", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000130", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000131", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000132", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000133", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000134", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000135", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000136", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000137", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000138", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000139", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000140", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000141", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000142", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000143", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000144", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000145", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000146", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000147", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000148", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000149", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000170", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000171", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000172", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000173", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000174", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000175", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000176", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000177", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000178", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000179", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000180", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000181", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000192", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000193", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000194", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000195", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000196", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000197", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000198", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000199", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000200", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000202", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000203", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000207", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000208", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000209", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000210", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000211", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000212", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000213", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000214", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000215", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000216", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000217", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000218", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000219", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000220", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000221", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000222", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000223", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000224", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000225", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000226", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000227", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000228", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000229", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000234", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000235", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000236", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000237", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000238", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000239", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000240", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000241", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000242", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000243", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000244", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E07000245", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000007", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000015", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000016", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000017", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000019", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000022", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000023", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000024", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000025", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000026", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000027", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000028", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000029", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000030", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000031", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000032", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000033", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000034", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000035", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000036", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E08000037", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000007", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000015", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000016", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000017", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000019", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000020", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000022", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000023", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000024", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000025", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000026", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000027", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000028", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000029", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000030", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000031", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000032", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@E09000033", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000007", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@N09000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000017", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000019", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000020", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000023", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000026", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000027", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000028", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000029", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000030", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000033", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000034", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000035", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000036", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000038", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000039", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000040", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000041", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000042", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000045", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000047", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000048", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000049", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@S12000050", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000001", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000002", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000003", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000004", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000005", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000006", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000008", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000009", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000010", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000011", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000012", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000013", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000014", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000015", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000016", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000018", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000019", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000020", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000021", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000022", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000023", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2023", + "to": "2025" + }, + { + "name": "hmrc.employment_income.count@W06000024", + "target_id": "hmrc.employment_income.count", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2023", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001063", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001064", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001065", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001066", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001067", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001068", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001069", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001070", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001071", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001072", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001073", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001074", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001075", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001076", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001077", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001078", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001079", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001080", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001081", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001082", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001083", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001084", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001085", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001086", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001087", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001088", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001089", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001090", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001091", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001092", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001093", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001094", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001095", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001096", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001097", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001098", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001099", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001100", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001101", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001102", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001103", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001104", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001105", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001106", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001107", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001108", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001109", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001110", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001111", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001112", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001113", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001114", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001115", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001116", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001117", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001118", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001119", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001120", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001121", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001122", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001123", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001124", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001125", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001126", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001127", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001128", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001129", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001130", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001131", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001132", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001133", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001134", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001135", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001136", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001137", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001138", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001139", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001140", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001141", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001142", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001143", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001144", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001145", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001146", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001147", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001148", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001149", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001150", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001151", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001152", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001153", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001154", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001155", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001156", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001157", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001158", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001159", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001160", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001161", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001162", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001163", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001164", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001165", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001166", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001167", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001168", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001169", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001170", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001171", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001172", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001173", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001174", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001175", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001176", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001177", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001178", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001179", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001180", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001181", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001182", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001183", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001184", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001185", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001186", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001187", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001188", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001189", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001190", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001191", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001192", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001193", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001194", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001195", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001196", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001197", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001198", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001199", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001200", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001201", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001202", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001203", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001204", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001205", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001206", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001207", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001208", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001209", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001210", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001211", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001212", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001213", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001214", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001215", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001216", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001217", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001218", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001219", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001220", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001221", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001222", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001223", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001224", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001225", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001226", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001227", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001228", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001229", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001230", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001231", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001232", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001233", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001234", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001235", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001236", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001237", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001238", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001239", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001240", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001241", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001242", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001243", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001244", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001245", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001246", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001247", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001248", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001249", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001250", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001251", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001252", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001253", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001254", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001255", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001256", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001257", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001258", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001259", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001260", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001261", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001262", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001263", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001264", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001265", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001266", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001267", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001268", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001269", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001270", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001271", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001272", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001273", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001274", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001275", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001276", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001277", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001278", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001279", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001280", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001281", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001282", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001283", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001284", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001285", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001286", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001287", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001288", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001289", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001290", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001291", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001292", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001293", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001294", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001295", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001296", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001297", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001298", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001299", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001300", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001301", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001302", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001303", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001304", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001305", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001306", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001307", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001308", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001309", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001310", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001311", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001312", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001313", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001314", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001315", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001316", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001317", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001318", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001319", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001320", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001321", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001322", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001323", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001324", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001325", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001326", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001327", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001328", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001329", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001330", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001331", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001332", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001333", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001334", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001335", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001336", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001337", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001338", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001339", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001340", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001341", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001342", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001343", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001344", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001345", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001346", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001347", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001348", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001349", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001350", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001351", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001352", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001353", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001354", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001355", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001356", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001357", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001358", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001359", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001360", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001361", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001362", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001363", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001364", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001365", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001366", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001367", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001368", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001369", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001370", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001371", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001372", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001373", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001374", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001375", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001376", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001377", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001378", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001379", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001380", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001381", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001382", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001383", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001384", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001385", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001386", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001387", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001388", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001389", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001390", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001391", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001392", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001393", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001394", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001395", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001396", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001397", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001398", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001399", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001400", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001401", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001402", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001403", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001404", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001405", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001406", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001407", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001408", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001409", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001410", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001411", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001412", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001413", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001414", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001415", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001416", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001417", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001418", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001419", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001420", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001421", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001422", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001423", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001424", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001425", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001426", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001427", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001428", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001429", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001430", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001431", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001432", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001433", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001434", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001435", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001436", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001437", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001438", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001439", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001440", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001441", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001442", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001443", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001444", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001445", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001446", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001447", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001448", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001449", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001450", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001451", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001452", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001453", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001454", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001455", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001456", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001457", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001458", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001459", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001460", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001461", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001462", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001463", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001464", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001465", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001466", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001467", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001468", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001469", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001470", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001471", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001472", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001473", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001474", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001475", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001476", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001477", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001478", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001479", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001480", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001481", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001482", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001483", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001484", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001485", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001486", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001487", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001488", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001489", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001490", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001491", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001492", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001493", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001494", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001495", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001496", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001497", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001498", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001499", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001500", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001501", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001502", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001503", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001504", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001505", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001506", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001507", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001508", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001509", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001510", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001511", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001512", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001513", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001514", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001515", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001516", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001517", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001518", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001519", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001520", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001521", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001522", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001523", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001524", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001525", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001526", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001527", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001528", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001529", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001530", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001531", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001532", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001533", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001534", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001535", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001536", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001537", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001538", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001539", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001540", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001541", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001542", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001543", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001544", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001545", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001546", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001547", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001548", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001549", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001550", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001551", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001552", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001553", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001554", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001555", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001556", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001557", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001558", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001559", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001560", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001561", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001562", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001563", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001564", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001565", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001566", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001567", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001568", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001569", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001570", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001571", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001572", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001573", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001574", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001575", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001576", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001577", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001578", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001579", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001580", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001581", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001582", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001583", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001584", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001585", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001586", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001587", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001588", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001589", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001590", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001591", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001592", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001593", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001594", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001595", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001596", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001597", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001598", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001599", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001600", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001601", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001602", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001603", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001604", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E14001605", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000001", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000002", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000003", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000004", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000005", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000006", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000007", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000008", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000009", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000010", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000011", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000012", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000013", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000014", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000015", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000016", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000017", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N05000018", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000021", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000027", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000045", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000048", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000051", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000060", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000061", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000062", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000063", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000064", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000065", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000066", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000067", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000068", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000069", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000070", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000071", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000072", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000073", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000074", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000075", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000076", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000077", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000078", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000079", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000080", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000081", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000082", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000083", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000084", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000085", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000086", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000087", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000088", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000089", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000090", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000091", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000092", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000093", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000094", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000095", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000096", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000097", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000098", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000099", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000100", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000101", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000102", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000103", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000104", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000105", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000106", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000107", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000108", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000109", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000110", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S14000111", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000081", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000082", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000083", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000084", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000085", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000086", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000087", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000088", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000089", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000090", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000091", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000092", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000093", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000094", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000095", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000096", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000097", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000098", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000099", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000100", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000101", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000102", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000103", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000104", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000105", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000106", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000107", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000108", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000109", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000110", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000111", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W07000112", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000001", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000002", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000003", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000004", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000007", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000012", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000013", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000014", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000015", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000016", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000017", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000018", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000019", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000020", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000021", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000022", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000023", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000024", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000025", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000026", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000027", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000030", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000031", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000032", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000033", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000034", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000035", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000036", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000037", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000038", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000039", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000040", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000041", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000042", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000043", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000044", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000045", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000046", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000047", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000049", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000050", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000051", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000052", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000053", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000054", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000055", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000056", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000057", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000058", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000059", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000060", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000061", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000062", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000063", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000064", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000065", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E06000066", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000012", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000032", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000033", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000034", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000035", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000036", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000037", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000038", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000039", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000040", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000041", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000042", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000043", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000044", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000045", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000046", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000047", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000061", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000062", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000063", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000064", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000065", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000066", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000067", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000068", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000069", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000070", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000071", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000072", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000073", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000074", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000075", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000076", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000077", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000078", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000079", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000080", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000081", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000082", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000083", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000084", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000085", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000086", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000087", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000088", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000089", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000090", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000091", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000092", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000093", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000094", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000095", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000096", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000098", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000099", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000102", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000103", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000105", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000106", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000107", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000108", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000109", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000110", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000111", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000112", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000113", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000114", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000115", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000116", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000117", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000118", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000119", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000120", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000121", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000122", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000123", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000124", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000125", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000126", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000127", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000128", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000129", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000130", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000131", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000132", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000133", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000134", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000135", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000136", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000137", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000138", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000139", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000140", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000141", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000142", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000143", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000144", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000145", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000146", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000147", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000148", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000149", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000170", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000171", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000172", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000173", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000174", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000175", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000176", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000177", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000178", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000179", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000180", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000181", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000192", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000193", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000194", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000195", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000196", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000197", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000198", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000199", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000200", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000202", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000203", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000207", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000208", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000209", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000210", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000211", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000212", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000213", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000214", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000215", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000216", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000217", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000218", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000219", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000220", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000221", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000222", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000223", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000224", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000225", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000226", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000227", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000228", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000229", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000234", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000235", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000236", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000237", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000238", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000239", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000240", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000241", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000242", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000243", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000244", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E07000245", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000001", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000002", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000003", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000004", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000007", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000012", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000013", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000014", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000015", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000016", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000017", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000018", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000019", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000021", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000022", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000023", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000024", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000025", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000026", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000027", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000028", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000029", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000030", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000031", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000032", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000033", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000034", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000035", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000036", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E08000037", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000001", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000002", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000003", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000004", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000007", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000012", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000013", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000014", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000015", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000016", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000017", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000018", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000019", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000020", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000021", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000022", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000023", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000024", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000025", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000026", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000027", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000028", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000029", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000030", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000031", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000032", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@E09000033", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000001", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000002", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000003", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000004", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000007", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@N09000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000013", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000014", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000017", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000018", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000019", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000020", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000021", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000023", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000026", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000027", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000028", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000029", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000030", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000033", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000034", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000035", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000036", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000038", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000039", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000040", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000041", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000042", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000045", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000047", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000048", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000049", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@S12000050", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000001", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000002", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000003", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000004", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000005", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000006", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000008", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000009", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000010", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000011", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000012", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000013", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000014", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000015", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000016", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000018", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000019", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000020", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000021", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000022", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000023", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.0_10@W06000024", + "target_id": "ons.age.0_10", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001063", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001064", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001065", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001066", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001067", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001068", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001069", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001070", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001071", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001072", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001073", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001074", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001075", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001076", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001077", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001078", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001079", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001080", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001081", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001082", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001083", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001084", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001085", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001086", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001087", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001088", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001089", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001090", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001091", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001092", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001093", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001094", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001095", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001096", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001097", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001098", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001099", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001100", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001101", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001102", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001103", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001104", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001105", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001106", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001107", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001108", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001109", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001110", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001111", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001112", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001113", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001114", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001115", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001116", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001117", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001118", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001119", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001120", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001121", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001122", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001123", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001124", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001125", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001126", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001127", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001128", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001129", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001130", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001131", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001132", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001133", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001134", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001135", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001136", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001137", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001138", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001139", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001140", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001141", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001142", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001143", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001144", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001145", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001146", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001147", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001148", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001149", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001150", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001151", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001152", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001153", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001154", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001155", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001156", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001157", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001158", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001159", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001160", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001161", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001162", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001163", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001164", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001165", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001166", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001167", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001168", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001169", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001170", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001171", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001172", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001173", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001174", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001175", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001176", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001177", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001178", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001179", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001180", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001181", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001182", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001183", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001184", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001185", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001186", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001187", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001188", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001189", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001190", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001191", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001192", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001193", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001194", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001195", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001196", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001197", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001198", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001199", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001200", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001201", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001202", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001203", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001204", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001205", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001206", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001207", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001208", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001209", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001210", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001211", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001212", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001213", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001214", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001215", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001216", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001217", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001218", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001219", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001220", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001221", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001222", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001223", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001224", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001225", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001226", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001227", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001228", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001229", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001230", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001231", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001232", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001233", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001234", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001235", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001236", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001237", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001238", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001239", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001240", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001241", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001242", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001243", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001244", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001245", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001246", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001247", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001248", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001249", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001250", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001251", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001252", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001253", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001254", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001255", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001256", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001257", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001258", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001259", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001260", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001261", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001262", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001263", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001264", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001265", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001266", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001267", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001268", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001269", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001270", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001271", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001272", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001273", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001274", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001275", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001276", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001277", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001278", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001279", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001280", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001281", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001282", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001283", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001284", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001285", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001286", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001287", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001288", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001289", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001290", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001291", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001292", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001293", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001294", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001295", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001296", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001297", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001298", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001299", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001300", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001301", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001302", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001303", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001304", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001305", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001306", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001307", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001308", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001309", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001310", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001311", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001312", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001313", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001314", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001315", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001316", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001317", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001318", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001319", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001320", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001321", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001322", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001323", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001324", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001325", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001326", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001327", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001328", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001329", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001330", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001331", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001332", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001333", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001334", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001335", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001336", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001337", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001338", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001339", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001340", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001341", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001342", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001343", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001344", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001345", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001346", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001347", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001348", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001349", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001350", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001351", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001352", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001353", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001354", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001355", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001356", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001357", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001358", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001359", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001360", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001361", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001362", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001363", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001364", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001365", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001366", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001367", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001368", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001369", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001370", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001371", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001372", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001373", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001374", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001375", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001376", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001377", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001378", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001379", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001380", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001381", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001382", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001383", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001384", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001385", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001386", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001387", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001388", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001389", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001390", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001391", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001392", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001393", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001394", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001395", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001396", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001397", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001398", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001399", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001400", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001401", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001402", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001403", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001404", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001405", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001406", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001407", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001408", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001409", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001410", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001411", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001412", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001413", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001414", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001415", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001416", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001417", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001418", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001419", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001420", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001421", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001422", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001423", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001424", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001425", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001426", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001427", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001428", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001429", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001430", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001431", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001432", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001433", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001434", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001435", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001436", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001437", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001438", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001439", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001440", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001441", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001442", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001443", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001444", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001445", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001446", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001447", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001448", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001449", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001450", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001451", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001452", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001453", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001454", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001455", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001456", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001457", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001458", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001459", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001460", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001461", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001462", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001463", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001464", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001465", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001466", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001467", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001468", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001469", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001470", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001471", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001472", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001473", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001474", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001475", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001476", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001477", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001478", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001479", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001480", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001481", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001482", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001483", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001484", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001485", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001486", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001487", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001488", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001489", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001490", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001491", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001492", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001493", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001494", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001495", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001496", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001497", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001498", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001499", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001500", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001501", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001502", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001503", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001504", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001505", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001506", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001507", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001508", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001509", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001510", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001511", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001512", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001513", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001514", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001515", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001516", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001517", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001518", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001519", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001520", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001521", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001522", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001523", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001524", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001525", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001526", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001527", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001528", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001529", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001530", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001531", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001532", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001533", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001534", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001535", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001536", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001537", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001538", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001539", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001540", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001541", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001542", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001543", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001544", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001545", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001546", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001547", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001548", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001549", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001550", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001551", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001552", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001553", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001554", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001555", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001556", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001557", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001558", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001559", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001560", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001561", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001562", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001563", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001564", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001565", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001566", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001567", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001568", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001569", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001570", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001571", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001572", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001573", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001574", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001575", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001576", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001577", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001578", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001579", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001580", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001581", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001582", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001583", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001584", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001585", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001586", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001587", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001588", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001589", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001590", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001591", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001592", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001593", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001594", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001595", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001596", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001597", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001598", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001599", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001600", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001601", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001602", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001603", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001604", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E14001605", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000001", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000002", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000003", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000004", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000005", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000006", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000007", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000008", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000009", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000010", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000011", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000012", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000013", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000014", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000015", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000016", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000017", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N05000018", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000021", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000027", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000045", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000048", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000051", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000060", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000061", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000062", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000063", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000064", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000065", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000066", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000067", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000068", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000069", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000070", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000071", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000072", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000073", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000074", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000075", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000076", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000077", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000078", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000079", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000080", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000081", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000082", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000083", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000084", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000085", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000086", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000087", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000088", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000089", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000090", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000091", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000092", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000093", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000094", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000095", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000096", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000097", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000098", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000099", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000100", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000101", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000102", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000103", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000104", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000105", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000106", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000107", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000108", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000109", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000110", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S14000111", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000081", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000082", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000083", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000084", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000085", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000086", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000087", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000088", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000089", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000090", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000091", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000092", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000093", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000094", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000095", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000096", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000097", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000098", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000099", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000100", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000101", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000102", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000103", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000104", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000105", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000106", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000107", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000108", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000109", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000110", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000111", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W07000112", + "target_id": "ons.age.10_20", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000001", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000002", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000003", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000004", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000007", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000012", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000013", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000014", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000015", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000016", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000017", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000018", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000019", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000020", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000021", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000022", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000023", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000024", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000025", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000026", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000027", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000030", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000031", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000032", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000033", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000034", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000035", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000036", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000037", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000038", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000039", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000040", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000041", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000042", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000043", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000044", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000045", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000046", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000047", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000049", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000050", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000051", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000052", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000053", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000054", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000055", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000056", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000057", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000058", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000059", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000060", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000061", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000062", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000063", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000064", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000065", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E06000066", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000012", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000032", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000033", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000034", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000035", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000036", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000037", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000038", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000039", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000040", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000041", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000042", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000043", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000044", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000045", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000046", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000047", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000061", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000062", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000063", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000064", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000065", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000066", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000067", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000068", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000069", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000070", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000071", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000072", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000073", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000074", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000075", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000076", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000077", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000078", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000079", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000080", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000081", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000082", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000083", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000084", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000085", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000086", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000087", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000088", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000089", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000090", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000091", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000092", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000093", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000094", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000095", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000096", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000098", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000099", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000102", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000103", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000105", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000106", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000107", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000108", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000109", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000110", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000111", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000112", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000113", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000114", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000115", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000116", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000117", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000118", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000119", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000120", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000121", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000122", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000123", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000124", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000125", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000126", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000127", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000128", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000129", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000130", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000131", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000132", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000133", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000134", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000135", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000136", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000137", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000138", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000139", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000140", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000141", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000142", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000143", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000144", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000145", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000146", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000147", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000148", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000149", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000170", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000171", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000172", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000173", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000174", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000175", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000176", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000177", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000178", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000179", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000180", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000181", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000192", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000193", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000194", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000195", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000196", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000197", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000198", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000199", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000200", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000202", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000203", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000207", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000208", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000209", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000210", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000211", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000212", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000213", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000214", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000215", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000216", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000217", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000218", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000219", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000220", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000221", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000222", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000223", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000224", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000225", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000226", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000227", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000228", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000229", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000234", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000235", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000236", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000237", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000238", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000239", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000240", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000241", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000242", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000243", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000244", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E07000245", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000001", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000002", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000003", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000004", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000007", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000012", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000013", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000014", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000015", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000016", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000017", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000018", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000019", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000021", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000022", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000023", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000024", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000025", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000026", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000027", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000028", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000029", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000030", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000031", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000032", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000033", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000034", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000035", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000036", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E08000037", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000001", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000002", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000003", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000004", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000007", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000012", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000013", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000014", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000015", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000016", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000017", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000018", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000019", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000020", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000021", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000022", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000023", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000024", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000025", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000026", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000027", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000028", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000029", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000030", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000031", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000032", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@E09000033", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000001", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000002", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000003", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000004", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000007", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@N09000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000013", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000014", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000017", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000018", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000019", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000020", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000021", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000023", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000026", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000027", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000028", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000029", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000030", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000033", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000034", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000035", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000036", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000038", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000039", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000040", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000041", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000042", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000045", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000047", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000048", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000049", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@S12000050", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000001", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000002", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000003", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000004", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000005", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000006", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000008", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000009", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000010", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000011", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000012", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000013", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000014", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000015", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000016", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000018", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000019", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000020", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000021", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000022", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000023", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.10_20@W06000024", + "target_id": "ons.age.10_20", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001063", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001064", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001065", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001066", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001067", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001068", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001069", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001070", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001071", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001072", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001073", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001074", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001075", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001076", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001077", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001078", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001079", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001080", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001081", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001082", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001083", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001084", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001085", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001086", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001087", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001088", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001089", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001090", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001091", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001092", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001093", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001094", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001095", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001096", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001097", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001098", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001099", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001100", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001101", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001102", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001103", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001104", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001105", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001106", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001107", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001108", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001109", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001110", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001111", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001112", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001113", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001114", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001115", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001116", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001117", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001118", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001119", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001120", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001121", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001122", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001123", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001124", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001125", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001126", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001127", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001128", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001129", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001130", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001131", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001132", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001133", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001134", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001135", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001136", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001137", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001138", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001139", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001140", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001141", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001142", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001143", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001144", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001145", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001146", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001147", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001148", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001149", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001150", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001151", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001152", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001153", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001154", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001155", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001156", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001157", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001158", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001159", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001160", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001161", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001162", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001163", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001164", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001165", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001166", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001167", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001168", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001169", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001170", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001171", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001172", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001173", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001174", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001175", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001176", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001177", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001178", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001179", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001180", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001181", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001182", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001183", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001184", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001185", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001186", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001187", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001188", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001189", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001190", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001191", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001192", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001193", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001194", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001195", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001196", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001197", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001198", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001199", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001200", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001201", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001202", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001203", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001204", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001205", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001206", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001207", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001208", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001209", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001210", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001211", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001212", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001213", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001214", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001215", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001216", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001217", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001218", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001219", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001220", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001221", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001222", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001223", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001224", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001225", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001226", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001227", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001228", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001229", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001230", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001231", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001232", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001233", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001234", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001235", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001236", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001237", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001238", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001239", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001240", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001241", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001242", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001243", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001244", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001245", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001246", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001247", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001248", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001249", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001250", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001251", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001252", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001253", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001254", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001255", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001256", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001257", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001258", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001259", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001260", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001261", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001262", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001263", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001264", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001265", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001266", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001267", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001268", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001269", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001270", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001271", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001272", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001273", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001274", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001275", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001276", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001277", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001278", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001279", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001280", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001281", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001282", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001283", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001284", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001285", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001286", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001287", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001288", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001289", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001290", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001291", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001292", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001293", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001294", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001295", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001296", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001297", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001298", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001299", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001300", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001301", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001302", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001303", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001304", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001305", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001306", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001307", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001308", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001309", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001310", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001311", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001312", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001313", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001314", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001315", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001316", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001317", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001318", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001319", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001320", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001321", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001322", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001323", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001324", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001325", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001326", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001327", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001328", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001329", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001330", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001331", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001332", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001333", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001334", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001335", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001336", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001337", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001338", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001339", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001340", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001341", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001342", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001343", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001344", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001345", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001346", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001347", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001348", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001349", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001350", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001351", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001352", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001353", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001354", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001355", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001356", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001357", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001358", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001359", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001360", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001361", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001362", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001363", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001364", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001365", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001366", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001367", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001368", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001369", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001370", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001371", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001372", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001373", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001374", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001375", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001376", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001377", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001378", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001379", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001380", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001381", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001382", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001383", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001384", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001385", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001386", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001387", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001388", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001389", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001390", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001391", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001392", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001393", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001394", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001395", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001396", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001397", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001398", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001399", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001400", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001401", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001402", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001403", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001404", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001405", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001406", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001407", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001408", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001409", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001410", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001411", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001412", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001413", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001414", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001415", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001416", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001417", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001418", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001419", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001420", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001421", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001422", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001423", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001424", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001425", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001426", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001427", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001428", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001429", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001430", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001431", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001432", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001433", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001434", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001435", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001436", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001437", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001438", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001439", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001440", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001441", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001442", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001443", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001444", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001445", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001446", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001447", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001448", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001449", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001450", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001451", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001452", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001453", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001454", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001455", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001456", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001457", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001458", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001459", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001460", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001461", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001462", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001463", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001464", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001465", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001466", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001467", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001468", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001469", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001470", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001471", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001472", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001473", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001474", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001475", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001476", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001477", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001478", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001479", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001480", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001481", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001482", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001483", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001484", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001485", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001486", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001487", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001488", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001489", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001490", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001491", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001492", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001493", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001494", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001495", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001496", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001497", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001498", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001499", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001500", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001501", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001502", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001503", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001504", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001505", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001506", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001507", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001508", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001509", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001510", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001511", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001512", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001513", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001514", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001515", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001516", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001517", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001518", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001519", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001520", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001521", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001522", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001523", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001524", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001525", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001526", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001527", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001528", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001529", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001530", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001531", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001532", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001533", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001534", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001535", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001536", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001537", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001538", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001539", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001540", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001541", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001542", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001543", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001544", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001545", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001546", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001547", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001548", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001549", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001550", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001551", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001552", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001553", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001554", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001555", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001556", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001557", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001558", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001559", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001560", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001561", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001562", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001563", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001564", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001565", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001566", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001567", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001568", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001569", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001570", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001571", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001572", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001573", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001574", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001575", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001576", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001577", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001578", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001579", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001580", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001581", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001582", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001583", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001584", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001585", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001586", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001587", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001588", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001589", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001590", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001591", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001592", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001593", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001594", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001595", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001596", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001597", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001598", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001599", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001600", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001601", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001602", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001603", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001604", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E14001605", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000001", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000002", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000003", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000004", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000005", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000006", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000007", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000008", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000009", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000010", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000011", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000012", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000013", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000014", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000015", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000016", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000017", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N05000018", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000021", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000027", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000045", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000048", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000051", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000060", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000061", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000062", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000063", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000064", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000065", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000066", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000067", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000068", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000069", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000070", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000071", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000072", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000073", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000074", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000075", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000076", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000077", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000078", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000079", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000080", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000081", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000082", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000083", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000084", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000085", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000086", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000087", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000088", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000089", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000090", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000091", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000092", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000093", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000094", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000095", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000096", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000097", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000098", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000099", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000100", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000101", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000102", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000103", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000104", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000105", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000106", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000107", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000108", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000109", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000110", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S14000111", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000081", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000082", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000083", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000084", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000085", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000086", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000087", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000088", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000089", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000090", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000091", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000092", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000093", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000094", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000095", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000096", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000097", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000098", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000099", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000100", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000101", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000102", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000103", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000104", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000105", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000106", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000107", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000108", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000109", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000110", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000111", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W07000112", + "target_id": "ons.age.20_30", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000001", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000002", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000003", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000004", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000007", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000012", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000013", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000014", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000015", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000016", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000017", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000018", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000019", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000020", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000021", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000022", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000023", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000024", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000025", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000026", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000027", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000030", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000031", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000032", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000033", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000034", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000035", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000036", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000037", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000038", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000039", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000040", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000041", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000042", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000043", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000044", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000045", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000046", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000047", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000049", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000050", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000051", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000052", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000053", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000054", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000055", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000056", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000057", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000058", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000059", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000060", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000061", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000062", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000063", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000064", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000065", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E06000066", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000012", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000032", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000033", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000034", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000035", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000036", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000037", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000038", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000039", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000040", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000041", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000042", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000043", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000044", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000045", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000046", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000047", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000061", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000062", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000063", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000064", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000065", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000066", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000067", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000068", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000069", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000070", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000071", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000072", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000073", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000074", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000075", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000076", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000077", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000078", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000079", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000080", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000081", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000082", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000083", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000084", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000085", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000086", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000087", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000088", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000089", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000090", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000091", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000092", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000093", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000094", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000095", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000096", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000098", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000099", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000102", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000103", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000105", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000106", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000107", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000108", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000109", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000110", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000111", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000112", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000113", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000114", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000115", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000116", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000117", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000118", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000119", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000120", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000121", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000122", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000123", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000124", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000125", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000126", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000127", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000128", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000129", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000130", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000131", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000132", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000133", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000134", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000135", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000136", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000137", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000138", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000139", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000140", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000141", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000142", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000143", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000144", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000145", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000146", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000147", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000148", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000149", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000170", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000171", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000172", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000173", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000174", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000175", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000176", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000177", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000178", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000179", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000180", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000181", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000192", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000193", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000194", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000195", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000196", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000197", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000198", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000199", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000200", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000202", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000203", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000207", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000208", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000209", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000210", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000211", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000212", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000213", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000214", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000215", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000216", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000217", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000218", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000219", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000220", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000221", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000222", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000223", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000224", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000225", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000226", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000227", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000228", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000229", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000234", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000235", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000236", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000237", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000238", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000239", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000240", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000241", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000242", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000243", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000244", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E07000245", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000001", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000002", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000003", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000004", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000007", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000012", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000013", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000014", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000015", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000016", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000017", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000018", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000019", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000021", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000022", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000023", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000024", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000025", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000026", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000027", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000028", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000029", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000030", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000031", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000032", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000033", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000034", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000035", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000036", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E08000037", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000001", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000002", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000003", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000004", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000007", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000012", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000013", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000014", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000015", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000016", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000017", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000018", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000019", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000020", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000021", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000022", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000023", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000024", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000025", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000026", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000027", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000028", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000029", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000030", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000031", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000032", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@E09000033", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000001", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000002", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000003", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000004", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000007", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@N09000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000013", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000014", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000017", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000018", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000019", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000020", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000021", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000023", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000026", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000027", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000028", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000029", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000030", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000033", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000034", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000035", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000036", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000038", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000039", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000040", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000041", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000042", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000045", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000047", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000048", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000049", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@S12000050", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000001", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000002", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000003", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000004", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000005", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000006", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000008", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000009", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000010", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000011", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000012", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000013", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000014", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000015", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000016", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000018", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000019", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000020", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000021", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000022", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000023", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.20_30@W06000024", + "target_id": "ons.age.20_30", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001063", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001064", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001065", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001066", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001067", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001068", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001069", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001070", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001071", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001072", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001073", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001074", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001075", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001076", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001077", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001078", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001079", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001080", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001081", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001082", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001083", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001084", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001085", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001086", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001087", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001088", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001089", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001090", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001091", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001092", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001093", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001094", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001095", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001096", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001097", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001098", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001099", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001100", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001101", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001102", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001103", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001104", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001105", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001106", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001107", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001108", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001109", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001110", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001111", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001112", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001113", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001114", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001115", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001116", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001117", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001118", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001119", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001120", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001121", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001122", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001123", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001124", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001125", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001126", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001127", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001128", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001129", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001130", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001131", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001132", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001133", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001134", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001135", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001136", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001137", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001138", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001139", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001140", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001141", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001142", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001143", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001144", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001145", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001146", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001147", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001148", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001149", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001150", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001151", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001152", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001153", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001154", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001155", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001156", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001157", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001158", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001159", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001160", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001161", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001162", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001163", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001164", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001165", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001166", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001167", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001168", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001169", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001170", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001171", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001172", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001173", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001174", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001175", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001176", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001177", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001178", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001179", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001180", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001181", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001182", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001183", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001184", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001185", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001186", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001187", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001188", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001189", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001190", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001191", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001192", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001193", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001194", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001195", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001196", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001197", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001198", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001199", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001200", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001201", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001202", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001203", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001204", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001205", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001206", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001207", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001208", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001209", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001210", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001211", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001212", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001213", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001214", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001215", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001216", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001217", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001218", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001219", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001220", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001221", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001222", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001223", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001224", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001225", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001226", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001227", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001228", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001229", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001230", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001231", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001232", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001233", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001234", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001235", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001236", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001237", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001238", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001239", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001240", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001241", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001242", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001243", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001244", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001245", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001246", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001247", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001248", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001249", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001250", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001251", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001252", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001253", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001254", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001255", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001256", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001257", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001258", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001259", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001260", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001261", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001262", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001263", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001264", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001265", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001266", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001267", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001268", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001269", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001270", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001271", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001272", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001273", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001274", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001275", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001276", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001277", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001278", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001279", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001280", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001281", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001282", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001283", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001284", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001285", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001286", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001287", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001288", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001289", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001290", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001291", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001292", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001293", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001294", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001295", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001296", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001297", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001298", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001299", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001300", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001301", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001302", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001303", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001304", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001305", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001306", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001307", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001308", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001309", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001310", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001311", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001312", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001313", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001314", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001315", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001316", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001317", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001318", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001319", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001320", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001321", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001322", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001323", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001324", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001325", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001326", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001327", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001328", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001329", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001330", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001331", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001332", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001333", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001334", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001335", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001336", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001337", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001338", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001339", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001340", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001341", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001342", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001343", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001344", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001345", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001346", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001347", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001348", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001349", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001350", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001351", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001352", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001353", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001354", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001355", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001356", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001357", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001358", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001359", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001360", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001361", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001362", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001363", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001364", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001365", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001366", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001367", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001368", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001369", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001370", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001371", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001372", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001373", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001374", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001375", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001376", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001377", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001378", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001379", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001380", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001381", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001382", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001383", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001384", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001385", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001386", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001387", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001388", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001389", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001390", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001391", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001392", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001393", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001394", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001395", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001396", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001397", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001398", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001399", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001400", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001401", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001402", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001403", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001404", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001405", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001406", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001407", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001408", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001409", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001410", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001411", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001412", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001413", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001414", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001415", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001416", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001417", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001418", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001419", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001420", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001421", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001422", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001423", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001424", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001425", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001426", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001427", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001428", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001429", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001430", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001431", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001432", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001433", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001434", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001435", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001436", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001437", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001438", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001439", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001440", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001441", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001442", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001443", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001444", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001445", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001446", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001447", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001448", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001449", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001450", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001451", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001452", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001453", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001454", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001455", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001456", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001457", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001458", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001459", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001460", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001461", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001462", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001463", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001464", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001465", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001466", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001467", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001468", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001469", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001470", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001471", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001472", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001473", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001474", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001475", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001476", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001477", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001478", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001479", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001480", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001481", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001482", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001483", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001484", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001485", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001486", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001487", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001488", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001489", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001490", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001491", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001492", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001493", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001494", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001495", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001496", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001497", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001498", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001499", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001500", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001501", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001502", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001503", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001504", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001505", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001506", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001507", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001508", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001509", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001510", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001511", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001512", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001513", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001514", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001515", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001516", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001517", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001518", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001519", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001520", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001521", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001522", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001523", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001524", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001525", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001526", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001527", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001528", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001529", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001530", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001531", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001532", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001533", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001534", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001535", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001536", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001537", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001538", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001539", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001540", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001541", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001542", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001543", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001544", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001545", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001546", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001547", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001548", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001549", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001550", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001551", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001552", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001553", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001554", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001555", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001556", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001557", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001558", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001559", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001560", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001561", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001562", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001563", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001564", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001565", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001566", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001567", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001568", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001569", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001570", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001571", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001572", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001573", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001574", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001575", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001576", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001577", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001578", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001579", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001580", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001581", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001582", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001583", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001584", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001585", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001586", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001587", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001588", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001589", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001590", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001591", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001592", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001593", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001594", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001595", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001596", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001597", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001598", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001599", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001600", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001601", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001602", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001603", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001604", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E14001605", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000001", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000002", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000003", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000004", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000005", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000006", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000007", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000008", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000009", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000010", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000011", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000012", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000013", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000014", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000015", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000016", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000017", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N05000018", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000021", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000027", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000045", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000048", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000051", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000060", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000061", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000062", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000063", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000064", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000065", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000066", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000067", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000068", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000069", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000070", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000071", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000072", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000073", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000074", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000075", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000076", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000077", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000078", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000079", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000080", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000081", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000082", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000083", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000084", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000085", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000086", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000087", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000088", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000089", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000090", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000091", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000092", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000093", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000094", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000095", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000096", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000097", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000098", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000099", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000100", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000101", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000102", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000103", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000104", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000105", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000106", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000107", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000108", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000109", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000110", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S14000111", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000081", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000082", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000083", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000084", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000085", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000086", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000087", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000088", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000089", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000090", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000091", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000092", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000093", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000094", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000095", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000096", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000097", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000098", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000099", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000100", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000101", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000102", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000103", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000104", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000105", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000106", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000107", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000108", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000109", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000110", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000111", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W07000112", + "target_id": "ons.age.30_40", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000001", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000002", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000003", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000004", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000007", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000012", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000013", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000014", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000015", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000016", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000017", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000018", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000019", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000020", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000021", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000022", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000023", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000024", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000025", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000026", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000027", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000030", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000031", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000032", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000033", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000034", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000035", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000036", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000037", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000038", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000039", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000040", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000041", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000042", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000043", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000044", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000045", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000046", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000047", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000049", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000050", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000051", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000052", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000053", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000054", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000055", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000056", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000057", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000058", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000059", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000060", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000061", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000062", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000063", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000064", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000065", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E06000066", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000012", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000032", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000033", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000034", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000035", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000036", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000037", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000038", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000039", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000040", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000041", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000042", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000043", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000044", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000045", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000046", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000047", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000061", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000062", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000063", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000064", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000065", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000066", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000067", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000068", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000069", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000070", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000071", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000072", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000073", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000074", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000075", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000076", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000077", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000078", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000079", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000080", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000081", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000082", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000083", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000084", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000085", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000086", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000087", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000088", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000089", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000090", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000091", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000092", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000093", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000094", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000095", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000096", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000098", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000099", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000102", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000103", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000105", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000106", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000107", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000108", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000109", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000110", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000111", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000112", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000113", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000114", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000115", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000116", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000117", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000118", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000119", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000120", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000121", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000122", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000123", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000124", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000125", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000126", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000127", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000128", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000129", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000130", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000131", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000132", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000133", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000134", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000135", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000136", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000137", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000138", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000139", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000140", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000141", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000142", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000143", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000144", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000145", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000146", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000147", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000148", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000149", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000170", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000171", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000172", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000173", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000174", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000175", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000176", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000177", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000178", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000179", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000180", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000181", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000192", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000193", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000194", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000195", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000196", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000197", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000198", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000199", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000200", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000202", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000203", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000207", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000208", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000209", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000210", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000211", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000212", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000213", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000214", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000215", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000216", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000217", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000218", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000219", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000220", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000221", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000222", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000223", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000224", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000225", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000226", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000227", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000228", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000229", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000234", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000235", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000236", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000237", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000238", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000239", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000240", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000241", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000242", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000243", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000244", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E07000245", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000001", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000002", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000003", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000004", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000007", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000012", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000013", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000014", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000015", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000016", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000017", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000018", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000019", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000021", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000022", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000023", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000024", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000025", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000026", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000027", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000028", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000029", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000030", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000031", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000032", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000033", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000034", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000035", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000036", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E08000037", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000001", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000002", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000003", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000004", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000007", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000012", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000013", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000014", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000015", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000016", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000017", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000018", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000019", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000020", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000021", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000022", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000023", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000024", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000025", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000026", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000027", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000028", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000029", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000030", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000031", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000032", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@E09000033", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000001", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000002", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000003", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000004", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000007", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@N09000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000013", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000014", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000017", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000018", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000019", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000020", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000021", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000023", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000026", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000027", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000028", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000029", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000030", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000033", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000034", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000035", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000036", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000038", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000039", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000040", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000041", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000042", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000045", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000047", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000048", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000049", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@S12000050", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000001", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000002", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000003", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000004", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000005", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000006", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000008", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000009", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000010", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000011", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000012", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000013", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000014", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000015", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000016", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000018", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000019", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000020", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000021", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000022", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000023", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.30_40@W06000024", + "target_id": "ons.age.30_40", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001063", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001064", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001065", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001066", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001067", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001068", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001069", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001070", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001071", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001072", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001073", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001074", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001075", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001076", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001077", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001078", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001079", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001080", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001081", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001082", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001083", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001084", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001085", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001086", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001087", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001088", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001089", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001090", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001091", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001092", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001093", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001094", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001095", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001096", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001097", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001098", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001099", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001100", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001101", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001102", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001103", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001104", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001105", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001106", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001107", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001108", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001109", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001110", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001111", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001112", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001113", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001114", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001115", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001116", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001117", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001118", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001119", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001120", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001121", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001122", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001123", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001124", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001125", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001126", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001127", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001128", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001129", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001130", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001131", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001132", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001133", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001134", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001135", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001136", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001137", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001138", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001139", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001140", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001141", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001142", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001143", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001144", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001145", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001146", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001147", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001148", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001149", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001150", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001151", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001152", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001153", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001154", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001155", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001156", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001157", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001158", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001159", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001160", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001161", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001162", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001163", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001164", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001165", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001166", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001167", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001168", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001169", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001170", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001171", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001172", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001173", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001174", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001175", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001176", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001177", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001178", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001179", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001180", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001181", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001182", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001183", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001184", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001185", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001186", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001187", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001188", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001189", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001190", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001191", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001192", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001193", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001194", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001195", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001196", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001197", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001198", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001199", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001200", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001201", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001202", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001203", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001204", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001205", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001206", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001207", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001208", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001209", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001210", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001211", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001212", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001213", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001214", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001215", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001216", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001217", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001218", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001219", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001220", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001221", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001222", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001223", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001224", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001225", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001226", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001227", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001228", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001229", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001230", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001231", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001232", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001233", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001234", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001235", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001236", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001237", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001238", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001239", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001240", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001241", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001242", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001243", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001244", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001245", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001246", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001247", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001248", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001249", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001250", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001251", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001252", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001253", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001254", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001255", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001256", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001257", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001258", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001259", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001260", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001261", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001262", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001263", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001264", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001265", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001266", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001267", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001268", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001269", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001270", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001271", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001272", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001273", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001274", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001275", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001276", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001277", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001278", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001279", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001280", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001281", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001282", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001283", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001284", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001285", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001286", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001287", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001288", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001289", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001290", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001291", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001292", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001293", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001294", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001295", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001296", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001297", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001298", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001299", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001300", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001301", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001302", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001303", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001304", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001305", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001306", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001307", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001308", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001309", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001310", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001311", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001312", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001313", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001314", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001315", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001316", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001317", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001318", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001319", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001320", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001321", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001322", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001323", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001324", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001325", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001326", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001327", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001328", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001329", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001330", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001331", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001332", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001333", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001334", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001335", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001336", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001337", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001338", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001339", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001340", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001341", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001342", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001343", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001344", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001345", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001346", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001347", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001348", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001349", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001350", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001351", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001352", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001353", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001354", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001355", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001356", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001357", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001358", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001359", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001360", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001361", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001362", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001363", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001364", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001365", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001366", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001367", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001368", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001369", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001370", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001371", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001372", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001373", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001374", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001375", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001376", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001377", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001378", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001379", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001380", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001381", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001382", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001383", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001384", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001385", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001386", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001387", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001388", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001389", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001390", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001391", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001392", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001393", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001394", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001395", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001396", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001397", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001398", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001399", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001400", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001401", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001402", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001403", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001404", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001405", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001406", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001407", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001408", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001409", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001410", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001411", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001412", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001413", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001414", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001415", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001416", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001417", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001418", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001419", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001420", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001421", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001422", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001423", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001424", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001425", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001426", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001427", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001428", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001429", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001430", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001431", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001432", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001433", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001434", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001435", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001436", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001437", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001438", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001439", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001440", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001441", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001442", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001443", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001444", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001445", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001446", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001447", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001448", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001449", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001450", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001451", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001452", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001453", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001454", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001455", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001456", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001457", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001458", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001459", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001460", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001461", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001462", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001463", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001464", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001465", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001466", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001467", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001468", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001469", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001470", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001471", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001472", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001473", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001474", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001475", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001476", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001477", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001478", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001479", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001480", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001481", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001482", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001483", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001484", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001485", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001486", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001487", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001488", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001489", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001490", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001491", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001492", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001493", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001494", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001495", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001496", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001497", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001498", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001499", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001500", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001501", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001502", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001503", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001504", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001505", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001506", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001507", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001508", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001509", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001510", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001511", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001512", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001513", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001514", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001515", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001516", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001517", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001518", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001519", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001520", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001521", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001522", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001523", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001524", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001525", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001526", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001527", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001528", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001529", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001530", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001531", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001532", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001533", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001534", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001535", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001536", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001537", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001538", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001539", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001540", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001541", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001542", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001543", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001544", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001545", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001546", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001547", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001548", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001549", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001550", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001551", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001552", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001553", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001554", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001555", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001556", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001557", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001558", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001559", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001560", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001561", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001562", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001563", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001564", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001565", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001566", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001567", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001568", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001569", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001570", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001571", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001572", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001573", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001574", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001575", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001576", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001577", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001578", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001579", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001580", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001581", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001582", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001583", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001584", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001585", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001586", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001587", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001588", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001589", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001590", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001591", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001592", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001593", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001594", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001595", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001596", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001597", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001598", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001599", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001600", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001601", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001602", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001603", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001604", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E14001605", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000001", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000002", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000003", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000004", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000005", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000006", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000007", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000008", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000009", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000010", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000011", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000012", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000013", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000014", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000015", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000016", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000017", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N05000018", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000021", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000027", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000045", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000048", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000051", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000060", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000061", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000062", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000063", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000064", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000065", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000066", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000067", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000068", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000069", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000070", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000071", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000072", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000073", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000074", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000075", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000076", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000077", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000078", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000079", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000080", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000081", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000082", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000083", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000084", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000085", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000086", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000087", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000088", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000089", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000090", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000091", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000092", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000093", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000094", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000095", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000096", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000097", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000098", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000099", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000100", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000101", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000102", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000103", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000104", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000105", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000106", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000107", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000108", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000109", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000110", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S14000111", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000081", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000082", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000083", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000084", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000085", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000086", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000087", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000088", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000089", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000090", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000091", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000092", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000093", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000094", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000095", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000096", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000097", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000098", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000099", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000100", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000101", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000102", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000103", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000104", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000105", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000106", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000107", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000108", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000109", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000110", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000111", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W07000112", + "target_id": "ons.age.40_50", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000001", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000002", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000003", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000004", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000007", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000012", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000013", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000014", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000015", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000016", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000017", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000018", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000019", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000020", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000021", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000022", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000023", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000024", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000025", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000026", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000027", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000030", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000031", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000032", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000033", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000034", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000035", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000036", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000037", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000038", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000039", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000040", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000041", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000042", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000043", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000044", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000045", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000046", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000047", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000049", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000050", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000051", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000052", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000053", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000054", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000055", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000056", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000057", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000058", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000059", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000060", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000061", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000062", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000063", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000064", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000065", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E06000066", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000012", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000032", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000033", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000034", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000035", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000036", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000037", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000038", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000039", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000040", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000041", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000042", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000043", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000044", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000045", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000046", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000047", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000061", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000062", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000063", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000064", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000065", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000066", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000067", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000068", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000069", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000070", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000071", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000072", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000073", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000074", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000075", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000076", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000077", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000078", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000079", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000080", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000081", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000082", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000083", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000084", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000085", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000086", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000087", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000088", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000089", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000090", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000091", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000092", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000093", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000094", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000095", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000096", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000098", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000099", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000102", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000103", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000105", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000106", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000107", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000108", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000109", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000110", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000111", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000112", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000113", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000114", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000115", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000116", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000117", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000118", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000119", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000120", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000121", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000122", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000123", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000124", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000125", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000126", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000127", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000128", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000129", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000130", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000131", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000132", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000133", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000134", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000135", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000136", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000137", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000138", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000139", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000140", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000141", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000142", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000143", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000144", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000145", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000146", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000147", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000148", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000149", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000170", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000171", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000172", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000173", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000174", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000175", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000176", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000177", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000178", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000179", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000180", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000181", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000192", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000193", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000194", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000195", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000196", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000197", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000198", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000199", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000200", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000202", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000203", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000207", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000208", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000209", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000210", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000211", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000212", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000213", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000214", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000215", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000216", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000217", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000218", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000219", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000220", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000221", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000222", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000223", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000224", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000225", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000226", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000227", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000228", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000229", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000234", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000235", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000236", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000237", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000238", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000239", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000240", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000241", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000242", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000243", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000244", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E07000245", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000001", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000002", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000003", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000004", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000007", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000012", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000013", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000014", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000015", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000016", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000017", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000018", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000019", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000021", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000022", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000023", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000024", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000025", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000026", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000027", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000028", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000029", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000030", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000031", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000032", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000033", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000034", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000035", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000036", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E08000037", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000001", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000002", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000003", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000004", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000007", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000012", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000013", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000014", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000015", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000016", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000017", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000018", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000019", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000020", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000021", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000022", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000023", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000024", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000025", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000026", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000027", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000028", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000029", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000030", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000031", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000032", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@E09000033", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000001", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000002", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000003", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000004", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000007", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@N09000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000013", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000014", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000017", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000018", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000019", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000020", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000021", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000023", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000026", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000027", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000028", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000029", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000030", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000033", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000034", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000035", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000036", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000038", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000039", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000040", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000041", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000042", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000045", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000047", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000048", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000049", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@S12000050", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000001", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000002", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000003", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000004", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000005", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000006", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000008", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000009", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000010", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000011", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000012", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000013", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000014", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000015", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000016", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000018", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000019", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000020", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000021", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000022", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000023", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.40_50@W06000024", + "target_id": "ons.age.40_50", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001063", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001064", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001065", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001066", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001067", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001068", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001069", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001070", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001071", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001072", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001073", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001074", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001075", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001076", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001077", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001078", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001079", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001080", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001081", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001082", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001083", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001084", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001085", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001086", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001087", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001088", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001089", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001090", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001091", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001092", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001093", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001094", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001095", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001096", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001097", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001098", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001099", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001100", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001101", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001102", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001103", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001104", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001105", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001106", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001107", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001108", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001109", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001110", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001111", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001112", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001113", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001114", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001115", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001116", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001117", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001118", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001119", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001120", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001121", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001122", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001123", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001124", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001125", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001126", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001127", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001128", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001129", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001130", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001131", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001132", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001133", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001134", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001135", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001136", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001137", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001138", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001139", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001140", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001141", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001142", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001143", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001144", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001145", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001146", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001147", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001148", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001149", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001150", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001151", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001152", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001153", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001154", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001155", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001156", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001157", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001158", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001159", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001160", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001161", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001162", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001163", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001164", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001165", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001166", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001167", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001168", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001169", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001170", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001171", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001172", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001173", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001174", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001175", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001176", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001177", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001178", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001179", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001180", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001181", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001182", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001183", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001184", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001185", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001186", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001187", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001188", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001189", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001190", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001191", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001192", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001193", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001194", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001195", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001196", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001197", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001198", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001199", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001200", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001201", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001202", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001203", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001204", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001205", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001206", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001207", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001208", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001209", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001210", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001211", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001212", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001213", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001214", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001215", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001216", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001217", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001218", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001219", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001220", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001221", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001222", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001223", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001224", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001225", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001226", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001227", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001228", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001229", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001230", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001231", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001232", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001233", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001234", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001235", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001236", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001237", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001238", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001239", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001240", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001241", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001242", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001243", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001244", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001245", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001246", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001247", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001248", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001249", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001250", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001251", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001252", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001253", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001254", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001255", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001256", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001257", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001258", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001259", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001260", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001261", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001262", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001263", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001264", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001265", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001266", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001267", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001268", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001269", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001270", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001271", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001272", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001273", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001274", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001275", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001276", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001277", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001278", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001279", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001280", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001281", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001282", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001283", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001284", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001285", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001286", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001287", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001288", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001289", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001290", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001291", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001292", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001293", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001294", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001295", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001296", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001297", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001298", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001299", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001300", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001301", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001302", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001303", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001304", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001305", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001306", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001307", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001308", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001309", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001310", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001311", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001312", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001313", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001314", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001315", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001316", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001317", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001318", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001319", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001320", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001321", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001322", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001323", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001324", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001325", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001326", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001327", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001328", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001329", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001330", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001331", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001332", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001333", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001334", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001335", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001336", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001337", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001338", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001339", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001340", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001341", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001342", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001343", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001344", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001345", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001346", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001347", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001348", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001349", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001350", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001351", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001352", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001353", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001354", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001355", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001356", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001357", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001358", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001359", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001360", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001361", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001362", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001363", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001364", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001365", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001366", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001367", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001368", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001369", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001370", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001371", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001372", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001373", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001374", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001375", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001376", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001377", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001378", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001379", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001380", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001381", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001382", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001383", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001384", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001385", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001386", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001387", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001388", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001389", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001390", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001391", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001392", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001393", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001394", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001395", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001396", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001397", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001398", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001399", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001400", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001401", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001402", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001403", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001404", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001405", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001406", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001407", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001408", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001409", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001410", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001411", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001412", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001413", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001414", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001415", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001416", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001417", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001418", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001419", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001420", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001421", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001422", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001423", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001424", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001425", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001426", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001427", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001428", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001429", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001430", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001431", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001432", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001433", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001434", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001435", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001436", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001437", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001438", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001439", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001440", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001441", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001442", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001443", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001444", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001445", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001446", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001447", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001448", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001449", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001450", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001451", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001452", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001453", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001454", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001455", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001456", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001457", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001458", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001459", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001460", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001461", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001462", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001463", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001464", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001465", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001466", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001467", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001468", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001469", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001470", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001471", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001472", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001473", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001474", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001475", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001476", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001477", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001478", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001479", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001480", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001481", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001482", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001483", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001484", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001485", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001486", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001487", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001488", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001489", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001490", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001491", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001492", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001493", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001494", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001495", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001496", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001497", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001498", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001499", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001500", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001501", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001502", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001503", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001504", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001505", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001506", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001507", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001508", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001509", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001510", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001511", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001512", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001513", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001514", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001515", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001516", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001517", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001518", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001519", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001520", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001521", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001522", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001523", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001524", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001525", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001526", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001527", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001528", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001529", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001530", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001531", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001532", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001533", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001534", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001535", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001536", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001537", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001538", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001539", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001540", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001541", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001542", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001543", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001544", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001545", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001546", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001547", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001548", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001549", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001550", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001551", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001552", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001553", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001554", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001555", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001556", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001557", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001558", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001559", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001560", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001561", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001562", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001563", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001564", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001565", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001566", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001567", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001568", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001569", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001570", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001571", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001572", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001573", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001574", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001575", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001576", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001577", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001578", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001579", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001580", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001581", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001582", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001583", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001584", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001585", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001586", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001587", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001588", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001589", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001590", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001591", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001592", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001593", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001594", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001595", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001596", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001597", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001598", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001599", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001600", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001601", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001602", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001603", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001604", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E14001605", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000001", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000002", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000003", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000004", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000005", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000006", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000007", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000008", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000009", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000010", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000011", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000012", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000013", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000014", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000015", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000016", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000017", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N05000018", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000021", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000027", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000045", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000048", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000051", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000060", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000061", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000062", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000063", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000064", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000065", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000066", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000067", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000068", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000069", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000070", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000071", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000072", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000073", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000074", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000075", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000076", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000077", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000078", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000079", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000080", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000081", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000082", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000083", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000084", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000085", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000086", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000087", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000088", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000089", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000090", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000091", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000092", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000093", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000094", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000095", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000096", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000097", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000098", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000099", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000100", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000101", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000102", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000103", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000104", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000105", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000106", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000107", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000108", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000109", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000110", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S14000111", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000081", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000082", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000083", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000084", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000085", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000086", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000087", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000088", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000089", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000090", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000091", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000092", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000093", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000094", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000095", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000096", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000097", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000098", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000099", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000100", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000101", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000102", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000103", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000104", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000105", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000106", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000107", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000108", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000109", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000110", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000111", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W07000112", + "target_id": "ons.age.50_60", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000001", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000002", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000003", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000004", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000007", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000012", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000013", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000014", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000015", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000016", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000017", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000018", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000019", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000020", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000021", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000022", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000023", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000024", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000025", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000026", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000027", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000030", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000031", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000032", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000033", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000034", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000035", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000036", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000037", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000038", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000039", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000040", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000041", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000042", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000043", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000044", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000045", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000046", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000047", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000049", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000050", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000051", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000052", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000053", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000054", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000055", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000056", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000057", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000058", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000059", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000060", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000061", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000062", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000063", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000064", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000065", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E06000066", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000012", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000032", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000033", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000034", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000035", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000036", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000037", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000038", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000039", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000040", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000041", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000042", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000043", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000044", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000045", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000046", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000047", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000061", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000062", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000063", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000064", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000065", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000066", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000067", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000068", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000069", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000070", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000071", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000072", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000073", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000074", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000075", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000076", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000077", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000078", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000079", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000080", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000081", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000082", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000083", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000084", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000085", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000086", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000087", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000088", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000089", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000090", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000091", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000092", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000093", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000094", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000095", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000096", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000098", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000099", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000102", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000103", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000105", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000106", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000107", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000108", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000109", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000110", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000111", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000112", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000113", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000114", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000115", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000116", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000117", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000118", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000119", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000120", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000121", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000122", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000123", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000124", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000125", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000126", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000127", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000128", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000129", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000130", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000131", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000132", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000133", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000134", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000135", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000136", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000137", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000138", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000139", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000140", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000141", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000142", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000143", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000144", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000145", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000146", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000147", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000148", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000149", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000170", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000171", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000172", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000173", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000174", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000175", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000176", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000177", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000178", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000179", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000180", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000181", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000192", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000193", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000194", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000195", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000196", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000197", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000198", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000199", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000200", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000202", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000203", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000207", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000208", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000209", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000210", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000211", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000212", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000213", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000214", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000215", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000216", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000217", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000218", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000219", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000220", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000221", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000222", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000223", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000224", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000225", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000226", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000227", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000228", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000229", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000234", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000235", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000236", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000237", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000238", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000239", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000240", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000241", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000242", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000243", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000244", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E07000245", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000001", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000002", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000003", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000004", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000007", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000012", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000013", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000014", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000015", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000016", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000017", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000018", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000019", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000021", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000022", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000023", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000024", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000025", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000026", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000027", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000028", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000029", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000030", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000031", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000032", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000033", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000034", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000035", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000036", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E08000037", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000001", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000002", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000003", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000004", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000007", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000012", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000013", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000014", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000015", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000016", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000017", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000018", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000019", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000020", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000021", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000022", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000023", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000024", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000025", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000026", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000027", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000028", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000029", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000030", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000031", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000032", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@E09000033", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000001", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000002", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000003", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000004", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000007", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@N09000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000013", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000014", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000017", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000018", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000019", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000020", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000021", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000023", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000026", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000027", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000028", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000029", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000030", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000033", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000034", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000035", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000036", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000038", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000039", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000040", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000041", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000042", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000045", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000047", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000048", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000049", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@S12000050", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000001", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000002", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000003", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000004", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000005", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000006", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000008", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000009", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000010", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000011", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000012", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000013", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000014", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000015", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000016", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000018", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000019", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000020", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000021", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000022", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000023", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.50_60@W06000024", + "target_id": "ons.age.50_60", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001063", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001064", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001065", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001066", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001067", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001068", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001069", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001070", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001071", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001072", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001073", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001074", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001075", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001076", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001077", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001078", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001079", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001080", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001081", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001082", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001083", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001084", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001085", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001086", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001087", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001088", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001089", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001090", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001091", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001092", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001093", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001094", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001095", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001096", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001097", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001098", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001099", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001100", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001101", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001102", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001103", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001104", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001105", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001106", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001107", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001108", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001109", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001110", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001111", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001112", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001113", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001114", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001115", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001116", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001117", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001118", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001119", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001120", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001121", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001122", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001123", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001124", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001125", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001126", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001127", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001128", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001129", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001130", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001131", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001132", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001133", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001134", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001135", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001136", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001137", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001138", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001139", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001140", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001141", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001142", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001143", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001144", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001145", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001146", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001147", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001148", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001149", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001150", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001151", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001152", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001153", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001154", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001155", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001156", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001157", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001158", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001159", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001160", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001161", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001162", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001163", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001164", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001165", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001166", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001167", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001168", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001169", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001170", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001171", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001172", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001173", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001174", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001175", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001176", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001177", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001178", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001179", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001180", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001181", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001182", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001183", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001184", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001185", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001186", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001187", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001188", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001189", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001190", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001191", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001192", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001193", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001194", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001195", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001196", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001197", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001198", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001199", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001200", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001201", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001202", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001203", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001204", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001205", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001206", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001207", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001208", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001209", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001210", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001211", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001212", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001213", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001214", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001215", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001216", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001217", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001218", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001219", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001220", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001221", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001222", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001223", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001224", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001225", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001226", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001227", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001228", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001229", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001230", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001231", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001232", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001233", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001234", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001235", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001236", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001237", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001238", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001239", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001240", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001241", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001242", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001243", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001244", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001245", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001246", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001247", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001248", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001249", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001250", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001251", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001252", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001253", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001254", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001255", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001256", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001257", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001258", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001259", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001260", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001261", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001262", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001263", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001264", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001265", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001266", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001267", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001268", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001269", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001270", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001271", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001272", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001273", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001274", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001275", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001276", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001277", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001278", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001279", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001280", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001281", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001282", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001283", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001284", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001285", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001286", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001287", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001288", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001289", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001290", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001291", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001292", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001293", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001294", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001295", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001296", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001297", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001298", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001299", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001300", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001301", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001302", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001303", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001304", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001305", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001306", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001307", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001308", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001309", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001310", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001311", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001312", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001313", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001314", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001315", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001316", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001317", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001318", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001319", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001320", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001321", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001322", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001323", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001324", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001325", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001326", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001327", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001328", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001329", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001330", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001331", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001332", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001333", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001334", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001335", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001336", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001337", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001338", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001339", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001340", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001341", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001342", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001343", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001344", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001345", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001346", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001347", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001348", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001349", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001350", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001351", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001352", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001353", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001354", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001355", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001356", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001357", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001358", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001359", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001360", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001361", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001362", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001363", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001364", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001365", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001366", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001367", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001368", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001369", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001370", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001371", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001372", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001373", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001374", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001375", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001376", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001377", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001378", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001379", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001380", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001381", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001382", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001383", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001384", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001385", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001386", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001387", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001388", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001389", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001390", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001391", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001392", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001393", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001394", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001395", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001396", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001397", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001398", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001399", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001400", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001401", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001402", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001403", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001404", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001405", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001406", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001407", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001408", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001409", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001410", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001411", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001412", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001413", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001414", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001415", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001416", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001417", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001418", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001419", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001420", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001421", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001422", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001423", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001424", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001425", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001426", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001427", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001428", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001429", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001430", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001431", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001432", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001433", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001434", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001435", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001436", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001437", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001438", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001439", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001440", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001441", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001442", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001443", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001444", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001445", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001446", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001447", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001448", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001449", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001450", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001451", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001452", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001453", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001454", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001455", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001456", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001457", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001458", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001459", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001460", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001461", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001462", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001463", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001464", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001465", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001466", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001467", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001468", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001469", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001470", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001471", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001472", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001473", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001474", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001475", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001476", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001477", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001478", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001479", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001480", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001481", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001482", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001483", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001484", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001485", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001486", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001487", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001488", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001489", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001490", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001491", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001492", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001493", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001494", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001495", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001496", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001497", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001498", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001499", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001500", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001501", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001502", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001503", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001504", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001505", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001506", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001507", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001508", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001509", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001510", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001511", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001512", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001513", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001514", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001515", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001516", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001517", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001518", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001519", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001520", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001521", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001522", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001523", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001524", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001525", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001526", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001527", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001528", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001529", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001530", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001531", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001532", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001533", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001534", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001535", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001536", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001537", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001538", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001539", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001540", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001541", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001542", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001543", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001544", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001545", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001546", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001547", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001548", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001549", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001550", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001551", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001552", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001553", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001554", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001555", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001556", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001557", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001558", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001559", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001560", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001561", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001562", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001563", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001564", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001565", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001566", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001567", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001568", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001569", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001570", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001571", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001572", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001573", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001574", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001575", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001576", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001577", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001578", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001579", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001580", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001581", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001582", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001583", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001584", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001585", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001586", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001587", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001588", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001589", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001590", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001591", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001592", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001593", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001594", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001595", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001596", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001597", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001598", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001599", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001600", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001601", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001602", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001603", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001604", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E14001605", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000001", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000002", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000003", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000004", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000005", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000006", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000007", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000008", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000009", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000010", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000011", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000012", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000013", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000014", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000015", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000016", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000017", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N05000018", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000021", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000027", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000045", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000048", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000051", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000060", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000061", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000062", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000063", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000064", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000065", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000066", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000067", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000068", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000069", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000070", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000071", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000072", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000073", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000074", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000075", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000076", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000077", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000078", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000079", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000080", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000081", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000082", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000083", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000084", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000085", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000086", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000087", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000088", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000089", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000090", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000091", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000092", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000093", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000094", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000095", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000096", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000097", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000098", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000099", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000100", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000101", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000102", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000103", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000104", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000105", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000106", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000107", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000108", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000109", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000110", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S14000111", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000081", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000082", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000083", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000084", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000085", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000086", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000087", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000088", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000089", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000090", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000091", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000092", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000093", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000094", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000095", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000096", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000097", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000098", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000099", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000100", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000101", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000102", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000103", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000104", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000105", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000106", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000107", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000108", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000109", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000110", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000111", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W07000112", + "target_id": "ons.age.60_70", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000001", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000002", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000003", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000004", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000007", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000012", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000013", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000014", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000015", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000016", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000017", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000018", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000019", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000020", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000021", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000022", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000023", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000024", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000025", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000026", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000027", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000030", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000031", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000032", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000033", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000034", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000035", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000036", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000037", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000038", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000039", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000040", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000041", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000042", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000043", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000044", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000045", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000046", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000047", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000049", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000050", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000051", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000052", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000053", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000054", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000055", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000056", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000057", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000058", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000059", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000060", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000061", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000062", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000063", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000064", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000065", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E06000066", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000012", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000032", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000033", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000034", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000035", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000036", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000037", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000038", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000039", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000040", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000041", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000042", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000043", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000044", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000045", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000046", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000047", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000061", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000062", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000063", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000064", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000065", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000066", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000067", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000068", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000069", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000070", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000071", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000072", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000073", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000074", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000075", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000076", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000077", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000078", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000079", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000080", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000081", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000082", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000083", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000084", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000085", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000086", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000087", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000088", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000089", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000090", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000091", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000092", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000093", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000094", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000095", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000096", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000098", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000099", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000102", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000103", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000105", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000106", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000107", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000108", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000109", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000110", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000111", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000112", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000113", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000114", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000115", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000116", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000117", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000118", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000119", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000120", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000121", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000122", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000123", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000124", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000125", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000126", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000127", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000128", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000129", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000130", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000131", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000132", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000133", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000134", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000135", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000136", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000137", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000138", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000139", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000140", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000141", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000142", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000143", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000144", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000145", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000146", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000147", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000148", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000149", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000170", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000171", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000172", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000173", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000174", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000175", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000176", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000177", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000178", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000179", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000180", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000181", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000192", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000193", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000194", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000195", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000196", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000197", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000198", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000199", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000200", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000202", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000203", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000207", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000208", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000209", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000210", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000211", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000212", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000213", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000214", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000215", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000216", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000217", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000218", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000219", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000220", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000221", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000222", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000223", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000224", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000225", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000226", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000227", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000228", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000229", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000234", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000235", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000236", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000237", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000238", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000239", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000240", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000241", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000242", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000243", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000244", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E07000245", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000001", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000002", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000003", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000004", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000007", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000012", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000013", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000014", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000015", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000016", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000017", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000018", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000019", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000021", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000022", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000023", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000024", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000025", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000026", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000027", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000028", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000029", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000030", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000031", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000032", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000033", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000034", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000035", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000036", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E08000037", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000001", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000002", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000003", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000004", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000007", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000012", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000013", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000014", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000015", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000016", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000017", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000018", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000019", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000020", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000021", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000022", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000023", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000024", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000025", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000026", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000027", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000028", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000029", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000030", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000031", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000032", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@E09000033", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000001", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000002", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000003", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000004", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000007", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@N09000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000013", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000014", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000017", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000018", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000019", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000020", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000021", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000023", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000026", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000027", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000028", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000029", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000030", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000033", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000034", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000035", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000036", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000038", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000039", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000040", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000041", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000042", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000045", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000047", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000048", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000049", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@S12000050", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000001", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000002", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000003", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000004", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000005", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000006", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000008", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000009", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000010", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000011", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000012", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000013", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000014", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000015", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000016", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000018", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000019", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000020", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000021", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000022", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000023", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.60_70@W06000024", + "target_id": "ons.age.60_70", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001063", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001064", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001065", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001066", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001067", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001068", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001069", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001070", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001071", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001072", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001073", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001074", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001075", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001076", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001077", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001078", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001079", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001080", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001081", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001082", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001083", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001084", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001085", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001086", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001087", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001088", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001089", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001090", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001091", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001092", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001093", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001094", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001095", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001096", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001097", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001098", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001099", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001100", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001101", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001102", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001103", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001104", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001105", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001106", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001107", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001108", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001109", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001110", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001111", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001112", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001113", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001114", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001115", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001116", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001117", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001118", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001119", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001120", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001121", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001122", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001123", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001124", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001125", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001126", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001127", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001128", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001129", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001130", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001131", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001132", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001133", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001134", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001135", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001136", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001137", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001138", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001139", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001140", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001141", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001142", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001143", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001144", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001145", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001146", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001147", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001148", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001149", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001150", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001151", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001152", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001153", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001154", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001155", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001156", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001157", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001158", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001159", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001160", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001161", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001162", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001163", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001164", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001165", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001166", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001167", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001168", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001169", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001170", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001171", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001172", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001173", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001174", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001175", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001176", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001177", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001178", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001179", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001180", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001181", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001182", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001183", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001184", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001185", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001186", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001187", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001188", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001189", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001190", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001191", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001192", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001193", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001194", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001195", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001196", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001197", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001198", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001199", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001200", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001201", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001202", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001203", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001204", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001205", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001206", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001207", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001208", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001209", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001210", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001211", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001212", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001213", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001214", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001215", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001216", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001217", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001218", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001219", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001220", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001221", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001222", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001223", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001224", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001225", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001226", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001227", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001228", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001229", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001230", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001231", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001232", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001233", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001234", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001235", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001236", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001237", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001238", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001239", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001240", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001241", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001242", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001243", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001244", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001245", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001246", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001247", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001248", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001249", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001250", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001251", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001252", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001253", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001254", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001255", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001256", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001257", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001258", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001259", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001260", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001261", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001262", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001263", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001264", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001265", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001266", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001267", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001268", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001269", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001270", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001271", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001272", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001273", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001274", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001275", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001276", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001277", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001278", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001279", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001280", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001281", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001282", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001283", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001284", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001285", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001286", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001287", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001288", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001289", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001290", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001291", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001292", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001293", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001294", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001295", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001296", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001297", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001298", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001299", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001300", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001301", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001302", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001303", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001304", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001305", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001306", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001307", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001308", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001309", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001310", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001311", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001312", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001313", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001314", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001315", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001316", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001317", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001318", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001319", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001320", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001321", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001322", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001323", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001324", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001325", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001326", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001327", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001328", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001329", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001330", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001331", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001332", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001333", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001334", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001335", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001336", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001337", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001338", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001339", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001340", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001341", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001342", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001343", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001344", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001345", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001346", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001347", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001348", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001349", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001350", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001351", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001352", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001353", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001354", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001355", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001356", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001357", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001358", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001359", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001360", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001361", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001362", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001363", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001364", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001365", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001366", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001367", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001368", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001369", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001370", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001371", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001372", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001373", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001374", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001375", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001376", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001377", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001378", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001379", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001380", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001381", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001382", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001383", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001384", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001385", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001386", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001387", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001388", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001389", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001390", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001391", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001392", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001393", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001394", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001395", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001396", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001397", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001398", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001399", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001400", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001401", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001402", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001403", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001404", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001405", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001406", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001407", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001408", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001409", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001410", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001411", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001412", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001413", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001414", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001415", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001416", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001417", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001418", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001419", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001420", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001421", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001422", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001423", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001424", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001425", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001426", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001427", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001428", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001429", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001430", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001431", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001432", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001433", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001434", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001435", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001436", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001437", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001438", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001439", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001440", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001441", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001442", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001443", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001444", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001445", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001446", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001447", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001448", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001449", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001450", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001451", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001452", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001453", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001454", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001455", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001456", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001457", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001458", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001459", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001460", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001461", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001462", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001463", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001464", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001465", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001466", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001467", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001468", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001469", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001470", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001471", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001472", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001473", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001474", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001475", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001476", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001477", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001478", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001479", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001480", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001481", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001482", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001483", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001484", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001485", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001486", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001487", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001488", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001489", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001490", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001491", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001492", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001493", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001494", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001495", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001496", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001497", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001498", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001499", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001500", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001501", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001502", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001503", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001504", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001505", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001506", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001507", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001508", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001509", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001510", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001511", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001512", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001513", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001514", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001515", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001516", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001517", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001518", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001519", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001520", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001521", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001522", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001523", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001524", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001525", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001526", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001527", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001528", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001529", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001530", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001531", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001532", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001533", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001534", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001535", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001536", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001537", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001538", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001539", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001540", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001541", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001542", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001543", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001544", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001545", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001546", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001547", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001548", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001549", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001550", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001551", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001552", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001553", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001554", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001555", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001556", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001557", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001558", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001559", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001560", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001561", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001562", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001563", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001564", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001565", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001566", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001567", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001568", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001569", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001570", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001571", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001572", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001573", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001574", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001575", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001576", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001577", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001578", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001579", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001580", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001581", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001582", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001583", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001584", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001585", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001586", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001587", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001588", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001589", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001590", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001591", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001592", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001593", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001594", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001595", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001596", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001597", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001598", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001599", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001600", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001601", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001602", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001603", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001604", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E14001605", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000001", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000002", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000003", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000004", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000005", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000006", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000007", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000008", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000009", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000010", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000011", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000012", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000013", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000014", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000015", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000016", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000017", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N05000018", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "N05000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000021", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000027", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000045", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000048", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000051", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000060", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000061", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000062", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000063", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000064", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000065", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000066", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000067", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000068", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000069", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000070", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000071", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000072", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000073", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000074", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000075", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000076", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000077", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000078", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000079", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000080", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000081", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000082", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000083", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000084", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000085", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000086", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000087", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000088", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000089", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000090", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000091", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000092", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000093", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000094", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000095", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000096", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000097", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000098", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000099", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000100", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000101", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000102", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000103", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000104", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000105", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000106", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000107", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000108", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000109", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000110", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S14000111", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000081", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000082", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000083", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000084", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000085", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000086", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000087", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000088", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000089", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000090", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000091", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000092", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000093", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000094", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000095", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000096", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000097", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000098", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000099", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000100", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000101", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000102", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000103", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000104", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000105", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000106", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000107", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000108", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000109", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000110", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000111", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W07000112", + "target_id": "ons.age.70_80", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000001", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000002", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000003", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000004", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000007", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000012", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000013", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000014", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000015", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000016", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000017", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000018", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000019", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000020", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000021", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000022", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000023", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000024", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000025", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000026", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000027", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000030", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000031", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000032", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000033", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000034", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000035", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000036", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000037", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000038", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000039", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000040", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000041", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000042", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000043", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000044", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000045", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000046", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000047", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000049", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000050", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000051", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000052", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000053", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000054", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000055", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000056", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000057", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000058", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000059", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000060", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000061", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000062", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000063", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000064", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000065", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E06000066", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000012", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000032", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000033", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000034", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000035", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000036", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000037", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000038", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000039", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000040", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000041", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000042", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000043", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000044", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000045", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000046", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000047", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000061", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000062", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000063", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000064", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000065", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000066", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000067", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000068", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000069", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000070", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000071", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000072", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000073", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000074", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000075", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000076", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000077", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000078", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000079", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000080", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000081", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000082", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000083", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000084", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000085", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000086", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000087", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000088", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000089", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000090", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000091", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000092", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000093", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000094", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000095", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000096", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000098", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000099", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000102", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000103", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000105", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000106", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000107", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000108", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000109", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000110", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000111", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000112", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000113", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000114", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000115", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000116", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000117", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000118", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000119", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000120", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000121", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000122", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000123", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000124", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000125", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000126", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000127", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000128", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000129", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000130", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000131", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000132", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000133", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000134", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000135", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000136", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000137", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000138", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000139", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000140", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000141", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000142", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000143", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000144", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000145", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000146", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000147", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000148", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000149", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000170", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000171", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000172", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000173", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000174", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000175", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000176", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000177", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000178", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000179", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000180", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000181", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000192", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000193", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000194", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000195", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000196", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000197", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000198", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000199", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000200", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000202", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000203", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000207", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000208", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000209", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000210", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000211", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000212", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000213", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000214", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000215", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000216", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000217", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000218", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000219", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000220", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000221", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000222", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000223", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000224", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000225", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000226", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000227", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000228", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000229", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000234", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000235", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000236", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000237", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000238", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000239", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000240", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000241", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000242", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000243", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000244", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E07000245", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000001", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000002", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000003", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000004", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000007", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000012", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000013", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000014", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000015", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000016", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000017", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000018", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000019", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000021", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000022", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000023", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000024", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000025", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000026", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000027", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000028", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000029", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000030", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000031", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000032", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000033", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000034", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000035", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000036", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E08000037", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000001", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000002", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000003", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000004", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000007", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000012", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000013", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000014", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000015", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000016", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000017", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000018", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000019", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000020", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000021", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000022", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000023", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000024", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000025", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000026", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000027", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000028", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000029", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000030", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000031", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000032", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@E09000033", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000001", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000002", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000003", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000004", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000007", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@N09000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000013", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000014", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000017", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000018", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000019", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000020", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000021", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000023", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000026", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000027", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000028", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000029", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000030", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000033", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000034", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000035", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000036", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000038", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000039", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000040", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000041", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000042", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000045", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000047", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000048", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000049", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@S12000050", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000001", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000002", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000003", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000004", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000005", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000006", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000008", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000009", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000010", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000011", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000012", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000013", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000014", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000015", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000016", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000018", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000019", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000020", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000021", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000022", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000023", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2024", + "to": "2025" + }, + { + "name": "ons.age.70_80@W06000024", + "target_id": "ons.age.70_80", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2024", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001063", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001064", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001065", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001066", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001067", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001068", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001069", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001070", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001071", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001072", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001073", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001074", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001075", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001076", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001077", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001078", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001079", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001080", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001081", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001082", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001083", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001084", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001085", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001086", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001087", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001088", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001089", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001090", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001091", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001092", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001093", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001094", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001095", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001096", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001097", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001098", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001099", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001100", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001101", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001102", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001103", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001104", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001105", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001106", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001107", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001108", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001109", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001110", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001111", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001112", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001113", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001114", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001115", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001116", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001117", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001118", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001119", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001120", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001121", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001122", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001123", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001124", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001125", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001126", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001127", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001128", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001129", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001130", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001131", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001132", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001133", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001134", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001135", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001136", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001137", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001138", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001139", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001140", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001141", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001142", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001143", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001144", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001145", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001146", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001147", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001148", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001149", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001150", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001151", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001152", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001153", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001154", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001155", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001156", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001157", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001158", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001159", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001160", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001161", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001162", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001163", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001164", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001165", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001166", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001167", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001168", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001169", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001170", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001171", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001172", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001173", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001174", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001175", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001176", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001177", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001178", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001179", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001180", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001181", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001182", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001183", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001184", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001185", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001186", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001187", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001188", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001189", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001190", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001191", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001192", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001193", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001194", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001195", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001196", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001197", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001198", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001199", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001200", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001201", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001202", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001203", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001204", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001205", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001206", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001207", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001208", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001209", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001210", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001211", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001212", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001213", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001214", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001215", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001216", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001217", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001218", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001219", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001220", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001221", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001222", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001223", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001224", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001225", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001226", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001227", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001228", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001229", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001230", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001231", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001232", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001233", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001234", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001235", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001236", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001237", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001238", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001239", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001240", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001241", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001242", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001243", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001244", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001245", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001246", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001247", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001248", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001249", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001250", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001251", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001252", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001253", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001254", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001255", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001256", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001257", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001258", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001259", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001260", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001261", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001262", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001263", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001264", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001265", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001266", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001267", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001268", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001269", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001270", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001271", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001272", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001273", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001274", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001275", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001276", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001277", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001278", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001279", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001280", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001281", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001282", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001283", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001284", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001285", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001286", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001287", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001288", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001289", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001290", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001291", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001292", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001293", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001294", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001295", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001296", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001297", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001298", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001299", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001300", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001301", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001302", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001303", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001304", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001305", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001306", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001307", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001308", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001309", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001310", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001311", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001312", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001313", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001314", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001315", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001316", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001317", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001318", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001319", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001320", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001321", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001322", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001323", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001324", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001325", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001326", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001327", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001328", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001329", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001330", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001331", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001332", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001333", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001334", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001335", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001336", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001337", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001338", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001339", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001340", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001341", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001342", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001343", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001344", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001345", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001346", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001347", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001348", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001349", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001350", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001351", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001352", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001353", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001354", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001355", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001356", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001357", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001358", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001359", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001360", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001361", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001362", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001363", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001364", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001365", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001366", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001367", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001368", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001369", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001370", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001371", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001372", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001373", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001374", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001375", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001376", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001377", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001378", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001379", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001380", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001381", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001382", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001383", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001384", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001385", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001386", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001387", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001388", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001389", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001390", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001391", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001392", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001393", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001394", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001395", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001396", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001397", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001398", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001399", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001400", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001401", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001402", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001403", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001404", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001405", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001406", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001407", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001408", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001409", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001410", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001411", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001412", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001413", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001414", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001415", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001416", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001417", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001418", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001419", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001420", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001421", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001422", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001423", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001424", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001425", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001426", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001427", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001428", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001429", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001430", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001431", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001432", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001433", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001434", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001435", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001436", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001437", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001438", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001439", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001440", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001441", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001442", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001443", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001444", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001445", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001446", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001447", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001448", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001449", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001450", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001451", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001452", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001453", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001454", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001455", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001456", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001457", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001458", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001459", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001460", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001461", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001462", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001463", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001464", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001465", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001466", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001467", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001468", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001469", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001470", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001471", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001472", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001473", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001474", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001475", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001476", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001477", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001478", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001479", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001480", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001481", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001482", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001483", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001484", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001485", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001486", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001487", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001488", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001489", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001490", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001491", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001492", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001493", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001494", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001495", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001496", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001497", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001498", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001499", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001500", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001501", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001502", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001503", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001504", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001505", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001506", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001507", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001508", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001509", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001510", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001511", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001512", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001513", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001514", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001515", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001516", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001517", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001518", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001519", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001520", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001521", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001522", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001523", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001524", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001525", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001526", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001527", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001528", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001529", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001530", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001531", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001532", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001533", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001534", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001535", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001536", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001537", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001538", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001539", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001540", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001541", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001542", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001543", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001544", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001545", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001546", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001547", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001548", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001549", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001550", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001551", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001552", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001553", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001554", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001555", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001556", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001557", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001558", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001559", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001560", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001561", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001562", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001563", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001564", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001565", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001566", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001567", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001568", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001569", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001570", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001571", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001572", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001573", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001574", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001575", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001576", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001577", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001578", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001579", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001580", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001581", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001582", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001583", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001584", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001585", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001586", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001587", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001588", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001589", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001590", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001591", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001592", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001593", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001594", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001595", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001596", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001597", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001598", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001599", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001600", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001601", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001602", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001603", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001604", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E14001605", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000027", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000045", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000048", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000051", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000060", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000061", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000062", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000063", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000064", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000065", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000066", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000067", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000068", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000069", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000070", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000071", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000072", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000073", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000074", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000075", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000076", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000077", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000078", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000079", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000080", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000081", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000082", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000083", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000084", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000085", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000086", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000087", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000088", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000089", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000090", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000091", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000092", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000093", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000094", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000095", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000096", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000097", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000098", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000099", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000100", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000101", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000102", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000103", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000104", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000105", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000106", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000107", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000108", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000109", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000110", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S14000111", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000081", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000082", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000083", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000084", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000085", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000086", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000087", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000088", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000089", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000090", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000091", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000092", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000093", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000094", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000095", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000096", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000097", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000098", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000099", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000100", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000101", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000102", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000103", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000104", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000105", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000106", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000107", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000108", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000109", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000110", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000111", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W07000112", + "target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000001", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000002", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000003", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000004", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000007", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000015", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000016", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000017", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000019", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000020", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000022", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000023", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000024", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000025", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000026", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000027", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000030", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000031", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000032", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000033", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000034", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000035", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000036", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000037", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000038", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000039", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000040", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000041", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000042", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000043", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000044", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000045", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000046", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000047", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000049", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000050", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000051", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000052", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000053", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000054", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000055", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000056", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000057", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000058", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000059", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000060", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000061", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000062", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000063", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000064", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000065", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E06000066", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000032", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000033", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000034", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000035", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000036", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000037", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000038", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000039", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000040", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000041", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000042", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000043", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000044", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000045", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000046", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000047", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000061", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000062", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000063", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000064", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000065", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000066", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000067", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000068", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000069", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000070", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000071", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000072", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000073", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000074", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000075", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000076", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000077", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000078", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000079", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000080", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000081", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000082", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000083", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000084", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000085", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000086", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000087", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000088", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000089", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000090", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000091", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000092", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000093", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000094", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000095", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000096", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000098", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000099", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000102", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000103", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000105", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000106", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000107", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000108", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000109", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000110", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000111", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000112", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000113", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000114", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000115", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000116", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000117", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000118", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000119", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000120", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000121", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000122", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000123", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000124", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000125", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000126", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000127", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000128", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000129", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000130", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000131", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000132", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000133", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000134", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000135", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000136", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000137", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000138", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000139", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000140", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000141", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000142", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000143", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000144", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000145", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000146", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000147", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000148", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000149", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000170", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000171", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000172", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000173", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000174", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000175", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000176", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000177", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000178", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000179", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000180", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000181", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000192", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000193", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000194", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000195", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000196", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000197", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000198", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000199", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000200", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000202", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000203", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000207", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000208", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000209", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000210", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000211", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000212", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000213", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000214", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000215", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000216", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000217", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000218", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000219", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000220", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000221", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000222", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000223", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000224", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000225", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000226", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000227", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000228", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000229", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000234", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000235", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000236", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000237", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000238", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000239", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000240", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000241", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000242", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000243", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000244", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E07000245", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000001", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000002", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000003", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000004", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000007", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000015", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000016", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000017", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000019", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000022", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000023", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000024", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000025", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000026", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000027", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000028", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000029", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000030", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000031", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000032", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000033", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000034", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000035", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000036", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E08000037", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000001", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000002", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000003", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000004", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000007", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000015", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000016", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000017", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000019", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000020", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000022", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000023", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000024", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000025", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000026", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000027", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000028", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000029", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000030", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000031", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000032", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@E09000033", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000017", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000019", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000020", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000023", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000026", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000027", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000028", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000029", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000030", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000033", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000034", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000035", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000036", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000038", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000039", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000040", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000041", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000042", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000045", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000047", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000048", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000049", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@S12000050", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000001", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000002", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000003", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000004", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000005", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000006", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000008", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000009", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000010", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000011", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000012", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000013", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000014", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000015", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000016", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000018", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000019", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000020", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000021", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000022", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000023", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area@W06000024", + "target_id": "dwp.uc.households_by_area", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001063", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001064", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001065", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001066", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001067", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001068", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001069", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001070", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001071", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001072", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001073", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001074", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001075", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001076", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001077", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001078", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001079", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001080", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001081", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001082", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001083", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001084", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001085", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001086", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001087", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001088", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001089", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001090", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001091", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001092", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001093", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001094", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001095", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001096", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001097", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001098", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001099", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001100", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001101", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001102", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001103", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001104", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001105", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001106", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001107", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001108", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001109", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001110", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001111", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001112", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001113", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001114", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001115", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001116", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001117", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001118", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001119", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001120", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001121", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001122", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001123", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001124", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001125", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001126", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001127", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001128", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001129", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001130", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001131", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001132", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001133", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001134", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001135", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001136", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001137", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001138", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001139", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001140", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001141", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001142", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001143", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001144", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001145", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001146", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001147", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001148", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001149", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001150", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001151", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001152", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001153", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001154", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001155", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001156", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001157", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001158", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001159", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001160", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001161", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001162", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001163", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001164", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001165", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001166", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001167", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001168", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001169", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001170", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001171", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001172", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001173", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001174", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001175", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001176", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001177", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001178", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001179", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001180", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001181", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001182", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001183", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001184", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001185", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001186", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001187", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001188", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001189", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001190", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001191", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001192", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001193", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001194", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001195", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001196", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001197", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001198", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001199", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001200", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001201", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001202", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001203", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001204", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001205", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001206", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001207", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001208", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001209", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001210", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001211", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001212", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001213", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001214", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001215", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001216", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001217", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001218", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001219", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001220", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001221", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001222", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001223", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001224", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001225", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001226", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001227", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001228", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001229", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001230", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001231", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001232", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001233", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001234", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001235", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001236", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001237", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001238", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001239", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001240", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001241", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001242", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001243", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001244", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001245", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001246", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001247", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001248", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001249", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001250", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001251", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001252", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001253", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001254", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001255", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001256", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001257", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001258", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001259", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001260", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001261", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001262", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001263", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001264", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001265", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001266", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001267", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001268", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001269", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001270", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001271", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001272", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001273", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001274", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001275", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001276", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001277", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001278", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001279", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001280", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001281", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001282", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001283", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001284", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001285", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001286", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001287", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001288", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001289", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001290", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001291", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001292", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001293", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001294", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001295", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001296", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001297", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001298", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001299", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001300", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001301", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001302", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001303", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001304", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001305", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001306", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001307", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001308", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001309", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001310", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001311", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001312", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001313", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001314", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001315", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001316", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001317", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001318", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001319", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001320", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001321", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001322", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001323", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001324", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001325", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001326", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001327", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001328", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001329", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001330", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001331", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001332", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001333", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001334", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001335", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001336", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001337", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001338", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001339", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001340", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001341", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001342", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001343", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001344", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001345", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001346", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001347", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001348", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001349", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001350", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001351", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001352", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001353", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001354", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001355", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001356", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001357", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001358", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001359", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001360", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001361", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001362", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001363", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001364", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001365", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001366", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001367", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001368", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001369", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001370", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001371", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001372", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001373", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001374", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001375", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001376", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001377", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001378", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001379", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001380", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001381", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001382", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001383", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001384", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001385", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001386", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001387", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001388", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001389", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001390", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001391", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001392", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001393", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001394", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001395", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001396", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001397", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001398", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001399", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001400", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001401", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001402", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001403", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001404", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001405", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001406", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001407", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001408", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001409", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001410", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001411", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001412", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001413", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001414", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001415", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001416", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001417", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001418", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001419", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001420", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001421", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001422", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001423", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001424", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001425", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001426", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001427", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001428", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001429", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001430", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001431", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001432", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001433", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001434", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001435", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001436", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001437", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001438", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001439", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001440", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001441", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001442", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001443", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001444", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001445", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001446", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001447", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001448", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001449", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001450", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001451", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001452", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001453", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001454", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001455", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001456", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001457", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001458", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001459", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001460", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001461", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001462", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001463", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001464", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001465", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001466", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001467", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001468", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001469", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001470", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001471", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001472", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001473", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001474", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001475", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001476", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001477", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001478", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001479", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001480", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001481", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001482", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001483", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001484", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001485", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001486", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001487", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001488", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001489", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001490", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001491", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001492", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001493", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001494", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001495", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001496", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001497", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001498", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001499", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001500", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001501", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001502", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001503", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001504", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001505", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001506", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001507", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001508", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001509", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001510", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001511", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001512", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001513", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001514", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001515", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001516", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001517", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001518", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001519", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001520", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001521", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001522", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001523", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001524", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001525", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001526", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001527", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001528", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001529", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001530", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001531", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001532", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001533", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001534", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001535", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001536", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001537", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001538", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001539", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001540", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001541", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001542", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001543", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001544", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001545", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001546", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001547", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001548", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001549", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001550", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001551", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001552", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001553", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001554", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001555", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001556", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001557", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001558", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001559", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001560", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001561", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001562", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001563", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001564", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001565", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001566", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001567", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001568", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001569", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001570", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001571", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001572", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001573", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001574", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001575", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001576", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001577", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001578", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001579", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001580", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001581", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001582", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001583", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001584", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001585", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001586", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001587", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001588", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001589", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001590", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001591", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001592", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001593", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001594", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001595", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001596", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001597", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001598", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001599", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001600", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001601", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001602", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001603", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001604", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@E14001605", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000021", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000027", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000045", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000048", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000051", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000060", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000061", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000062", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000063", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000064", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000065", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000066", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000067", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000068", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000069", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000070", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000071", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000072", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000073", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000074", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000075", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000076", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000077", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000078", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000079", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000080", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000081", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000082", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000083", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000084", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000085", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000086", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000087", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000088", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000089", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000090", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000091", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000092", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000093", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000094", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000095", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000096", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000097", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000098", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000099", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000100", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000101", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000102", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000103", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000104", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000105", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000106", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000107", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000108", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000109", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000110", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@S14000111", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000081", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000082", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000083", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000084", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000085", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000086", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000087", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000088", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000089", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000090", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000091", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000092", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000093", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000094", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000095", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000096", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000097", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000098", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000099", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000100", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000101", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000102", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000103", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000104", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000105", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000106", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000107", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000108", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000109", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000110", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000111", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_0@W07000112", + "target_id": "dwp.uc.households_by_area_children_0", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001063", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001064", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001065", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001066", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001067", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001068", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001069", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001070", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001071", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001072", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001073", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001074", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001075", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001076", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001077", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001078", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001079", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001080", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001081", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001082", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001083", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001084", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001085", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001086", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001087", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001088", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001089", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001090", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001091", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001092", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001093", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001094", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001095", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001096", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001097", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001098", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001099", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001100", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001101", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001102", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001103", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001104", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001105", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001106", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001107", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001108", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001109", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001110", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001111", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001112", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001113", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001114", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001115", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001116", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001117", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001118", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001119", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001120", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001121", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001122", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001123", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001124", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001125", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001126", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001127", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001128", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001129", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001130", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001131", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001132", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001133", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001134", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001135", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001136", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001137", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001138", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001139", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001140", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001141", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001142", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001143", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001144", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001145", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001146", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001147", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001148", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001149", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001150", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001151", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001152", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001153", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001154", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001155", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001156", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001157", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001158", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001159", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001160", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001161", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001162", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001163", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001164", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001165", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001166", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001167", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001168", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001169", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001170", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001171", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001172", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001173", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001174", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001175", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001176", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001177", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001178", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001179", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001180", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001181", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001182", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001183", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001184", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001185", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001186", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001187", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001188", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001189", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001190", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001191", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001192", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001193", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001194", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001195", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001196", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001197", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001198", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001199", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001200", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001201", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001202", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001203", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001204", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001205", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001206", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001207", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001208", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001209", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001210", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001211", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001212", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001213", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001214", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001215", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001216", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001217", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001218", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001219", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001220", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001221", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001222", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001223", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001224", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001225", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001226", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001227", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001228", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001229", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001230", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001231", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001232", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001233", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001234", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001235", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001236", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001237", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001238", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001239", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001240", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001241", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001242", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001243", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001244", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001245", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001246", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001247", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001248", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001249", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001250", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001251", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001252", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001253", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001254", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001255", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001256", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001257", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001258", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001259", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001260", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001261", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001262", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001263", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001264", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001265", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001266", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001267", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001268", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001269", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001270", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001271", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001272", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001273", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001274", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001275", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001276", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001277", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001278", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001279", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001280", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001281", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001282", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001283", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001284", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001285", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001286", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001287", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001288", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001289", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001290", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001291", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001292", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001293", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001294", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001295", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001296", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001297", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001298", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001299", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001300", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001301", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001302", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001303", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001304", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001305", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001306", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001307", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001308", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001309", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001310", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001311", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001312", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001313", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001314", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001315", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001316", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001317", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001318", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001319", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001320", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001321", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001322", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001323", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001324", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001325", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001326", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001327", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001328", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001329", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001330", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001331", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001332", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001333", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001334", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001335", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001336", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001337", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001338", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001339", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001340", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001341", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001342", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001343", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001344", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001345", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001346", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001347", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001348", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001349", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001350", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001351", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001352", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001353", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001354", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001355", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001356", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001357", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001358", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001359", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001360", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001361", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001362", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001363", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001364", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001365", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001366", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001367", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001368", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001369", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001370", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001371", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001372", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001373", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001374", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001375", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001376", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001377", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001378", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001379", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001380", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001381", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001382", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001383", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001384", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001385", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001386", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001387", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001388", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001389", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001390", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001391", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001392", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001393", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001394", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001395", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001396", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001397", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001398", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001399", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001400", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001401", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001402", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001403", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001404", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001405", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001406", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001407", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001408", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001409", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001410", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001411", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001412", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001413", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001414", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001415", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001416", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001417", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001418", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001419", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001420", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001421", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001422", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001423", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001424", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001425", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001426", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001427", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001428", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001429", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001430", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001431", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001432", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001433", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001434", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001435", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001436", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001437", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001438", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001439", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001440", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001441", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001442", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001443", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001444", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001445", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001446", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001447", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001448", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001449", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001450", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001451", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001452", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001453", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001454", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001455", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001456", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001457", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001458", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001459", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001460", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001461", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001462", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001463", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001464", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001465", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001466", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001467", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001468", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001469", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001470", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001471", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001472", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001473", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001474", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001475", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001476", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001477", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001478", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001479", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001480", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001481", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001482", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001483", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001484", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001485", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001486", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001487", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001488", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001489", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001490", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001491", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001492", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001493", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001494", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001495", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001496", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001497", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001498", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001499", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001500", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001501", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001502", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001503", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001504", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001505", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001506", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001507", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001508", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001509", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001510", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001511", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001512", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001513", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001514", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001515", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001516", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001517", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001518", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001519", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001520", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001521", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001522", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001523", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001524", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001525", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001526", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001527", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001528", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001529", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001530", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001531", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001532", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001533", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001534", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001535", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001536", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001537", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001538", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001539", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001540", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001541", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001542", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001543", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001544", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001545", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001546", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001547", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001548", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001549", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001550", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001551", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001552", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001553", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001554", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001555", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001556", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001557", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001558", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001559", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001560", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001561", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001562", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001563", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001564", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001565", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001566", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001567", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001568", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001569", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001570", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001571", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001572", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001573", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001574", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001575", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001576", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001577", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001578", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001579", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001580", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001581", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001582", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001583", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001584", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001585", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001586", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001587", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001588", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001589", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001590", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001591", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001592", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001593", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001594", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001595", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001596", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001597", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001598", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001599", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001600", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001601", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001602", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001603", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001604", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@E14001605", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000021", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000027", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000045", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000048", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000051", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000060", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000061", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000062", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000063", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000064", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000065", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000066", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000067", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000068", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000069", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000070", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000071", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000072", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000073", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000074", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000075", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000076", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000077", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000078", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000079", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000080", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000081", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000082", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000083", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000084", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000085", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000086", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000087", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000088", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000089", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000090", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000091", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000092", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000093", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000094", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000095", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000096", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000097", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000098", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000099", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000100", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000101", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000102", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000103", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000104", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000105", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000106", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000107", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000108", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000109", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000110", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@S14000111", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000081", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000082", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000083", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000084", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000085", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000086", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000087", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000088", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000089", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000090", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000091", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000092", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000093", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000094", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000095", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000096", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000097", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000098", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000099", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000100", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000101", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000102", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000103", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000104", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000105", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000106", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000107", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000108", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000109", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000110", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000111", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_1@W07000112", + "target_id": "dwp.uc.households_by_area_children_1", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001063", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001064", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001065", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001066", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001067", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001068", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001069", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001070", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001071", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001072", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001073", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001074", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001075", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001076", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001077", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001078", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001079", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001080", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001081", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001082", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001083", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001084", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001085", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001086", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001087", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001088", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001089", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001090", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001091", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001092", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001093", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001094", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001095", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001096", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001097", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001098", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001099", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001100", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001101", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001102", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001103", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001104", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001105", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001106", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001107", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001108", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001109", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001110", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001111", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001112", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001113", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001114", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001115", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001116", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001117", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001118", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001119", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001120", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001121", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001122", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001123", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001124", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001125", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001126", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001127", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001128", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001129", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001130", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001131", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001132", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001133", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001134", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001135", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001136", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001137", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001138", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001139", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001140", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001141", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001142", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001143", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001144", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001145", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001146", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001147", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001148", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001149", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001150", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001151", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001152", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001153", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001154", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001155", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001156", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001157", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001158", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001159", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001160", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001161", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001162", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001163", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001164", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001165", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001166", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001167", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001168", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001169", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001170", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001171", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001172", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001173", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001174", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001175", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001176", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001177", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001178", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001179", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001180", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001181", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001182", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001183", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001184", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001185", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001186", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001187", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001188", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001189", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001190", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001191", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001192", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001193", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001194", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001195", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001196", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001197", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001198", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001199", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001200", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001201", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001202", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001203", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001204", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001205", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001206", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001207", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001208", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001209", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001210", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001211", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001212", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001213", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001214", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001215", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001216", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001217", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001218", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001219", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001220", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001221", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001222", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001223", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001224", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001225", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001226", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001227", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001228", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001229", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001230", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001231", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001232", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001233", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001234", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001235", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001236", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001237", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001238", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001239", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001240", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001241", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001242", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001243", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001244", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001245", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001246", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001247", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001248", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001249", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001250", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001251", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001252", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001253", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001254", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001255", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001256", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001257", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001258", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001259", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001260", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001261", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001262", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001263", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001264", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001265", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001266", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001267", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001268", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001269", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001270", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001271", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001272", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001273", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001274", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001275", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001276", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001277", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001278", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001279", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001280", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001281", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001282", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001283", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001284", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001285", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001286", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001287", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001288", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001289", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001290", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001291", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001292", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001293", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001294", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001295", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001296", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001297", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001298", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001299", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001300", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001301", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001302", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001303", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001304", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001305", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001306", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001307", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001308", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001309", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001310", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001311", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001312", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001313", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001314", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001315", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001316", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001317", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001318", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001319", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001320", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001321", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001322", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001323", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001324", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001325", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001326", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001327", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001328", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001329", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001330", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001331", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001332", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001333", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001334", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001335", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001336", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001337", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001338", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001339", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001340", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001341", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001342", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001343", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001344", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001345", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001346", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001347", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001348", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001349", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001350", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001351", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001352", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001353", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001354", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001355", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001356", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001357", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001358", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001359", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001360", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001361", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001362", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001363", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001364", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001365", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001366", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001367", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001368", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001369", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001370", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001371", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001372", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001373", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001374", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001375", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001376", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001377", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001378", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001379", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001380", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001381", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001382", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001383", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001384", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001385", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001386", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001387", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001388", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001389", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001390", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001391", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001392", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001393", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001394", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001395", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001396", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001397", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001398", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001399", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001400", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001401", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001402", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001403", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001404", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001405", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001406", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001407", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001408", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001409", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001410", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001411", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001412", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001413", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001414", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001415", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001416", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001417", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001418", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001419", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001420", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001421", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001422", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001423", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001424", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001425", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001426", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001427", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001428", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001429", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001430", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001431", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001432", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001433", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001434", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001435", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001436", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001437", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001438", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001439", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001440", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001441", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001442", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001443", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001444", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001445", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001446", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001447", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001448", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001449", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001450", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001451", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001452", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001453", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001454", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001455", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001456", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001457", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001458", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001459", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001460", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001461", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001462", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001463", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001464", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001465", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001466", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001467", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001468", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001469", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001470", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001471", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001472", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001473", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001474", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001475", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001476", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001477", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001478", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001479", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001480", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001481", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001482", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001483", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001484", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001485", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001486", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001487", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001488", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001489", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001490", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001491", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001492", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001493", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001494", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001495", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001496", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001497", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001498", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001499", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001500", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001501", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001502", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001503", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001504", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001505", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001506", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001507", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001508", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001509", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001510", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001511", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001512", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001513", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001514", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001515", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001516", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001517", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001518", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001519", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001520", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001521", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001522", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001523", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001524", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001525", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001526", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001527", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001528", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001529", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001530", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001531", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001532", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001533", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001534", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001535", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001536", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001537", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001538", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001539", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001540", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001541", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001542", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001543", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001544", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001545", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001546", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001547", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001548", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001549", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001550", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001551", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001552", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001553", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001554", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001555", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001556", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001557", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001558", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001559", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001560", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001561", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001562", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001563", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001564", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001565", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001566", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001567", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001568", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001569", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001570", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001571", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001572", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001573", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001574", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001575", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001576", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001577", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001578", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001579", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001580", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001581", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001582", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001583", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001584", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001585", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001586", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001587", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001588", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001589", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001590", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001591", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001592", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001593", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001594", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001595", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001596", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001597", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001598", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001599", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001600", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001601", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001602", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001603", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001604", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@E14001605", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000021", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000027", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000045", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000048", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000051", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000060", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000061", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000062", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000063", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000064", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000065", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000066", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000067", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000068", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000069", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000070", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000071", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000072", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000073", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000074", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000075", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000076", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000077", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000078", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000079", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000080", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000081", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000082", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000083", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000084", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000085", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000086", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000087", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000088", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000089", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000090", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000091", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000092", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000093", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000094", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000095", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000096", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000097", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000098", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000099", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000100", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000101", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000102", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000103", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000104", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000105", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000106", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000107", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000108", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000109", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000110", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@S14000111", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000081", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000082", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000083", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000084", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000085", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000086", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000087", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000088", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000089", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000090", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000091", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000092", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000093", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000094", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000095", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000096", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000097", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000098", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000099", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000100", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000101", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000102", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000103", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000104", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000105", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000106", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000107", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000108", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000109", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000110", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000111", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_2@W07000112", + "target_id": "dwp.uc.households_by_area_children_2", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001063", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001064", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001065", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001066", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001067", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001068", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001069", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001070", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001071", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001072", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001073", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001074", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001075", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001076", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001077", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001078", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001079", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001080", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001081", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001082", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001083", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001084", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001085", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001086", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001087", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001088", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001089", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001090", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001091", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001092", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001093", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001094", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001095", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001096", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001097", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001098", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001099", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001100", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001101", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001102", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001103", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001104", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001105", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001106", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001107", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001108", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001109", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001110", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001111", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001112", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001113", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001113", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001114", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001114", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001115", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001115", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001116", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001116", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001117", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001117", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001118", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001118", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001119", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001119", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001120", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001120", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001121", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001121", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001122", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001122", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001123", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001123", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001124", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001124", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001125", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001125", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001126", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001126", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001127", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001127", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001128", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001128", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001129", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001129", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001130", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001130", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001131", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001131", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001132", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001132", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001133", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001133", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001134", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001134", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001135", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001135", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001136", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001136", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001137", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001137", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001138", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001138", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001139", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001139", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001140", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001140", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001141", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001141", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001142", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001142", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001143", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001143", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001144", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001144", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001145", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001145", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001146", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001146", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001147", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001147", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001148", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001148", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001149", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001149", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001150", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001150", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001151", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001151", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001152", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001152", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001153", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001153", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001154", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001154", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001155", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001155", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001156", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001156", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001157", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001157", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001158", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001158", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001159", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001159", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001160", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001160", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001161", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001161", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001162", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001162", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001163", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001163", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001164", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001164", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001165", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001165", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001166", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001166", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001167", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001167", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001168", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001168", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001169", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001169", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001170", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001170", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001171", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001171", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001172", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001172", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001173", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001173", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001174", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001174", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001175", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001175", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001176", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001176", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001177", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001177", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001178", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001178", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001179", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001179", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001180", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001180", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001181", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001181", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001182", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001182", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001183", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001183", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001184", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001184", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001185", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001185", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001186", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001186", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001187", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001187", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001188", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001188", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001189", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001189", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001190", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001190", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001191", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001191", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001192", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001192", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001193", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001193", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001194", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001194", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001195", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001195", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001196", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001196", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001197", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001197", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001198", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001198", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001199", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001199", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001200", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001200", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001201", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001201", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001202", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001202", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001203", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001203", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001204", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001204", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001205", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001205", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001206", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001206", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001207", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001207", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001208", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001208", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001209", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001209", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001210", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001210", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001211", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001211", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001212", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001212", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001213", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001213", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001214", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001214", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001215", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001215", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001216", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001216", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001217", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001217", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001218", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001218", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001219", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001219", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001220", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001220", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001221", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001221", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001222", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001222", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001223", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001223", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001224", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001224", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001225", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001225", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001226", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001226", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001227", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001227", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001228", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001228", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001229", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001229", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001230", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001230", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001231", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001231", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001232", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001232", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001233", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001233", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001234", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001234", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001235", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001235", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001236", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001236", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001237", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001237", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001238", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001238", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001239", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001239", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001240", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001240", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001241", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001241", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001242", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001242", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001243", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001243", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001244", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001244", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001245", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001245", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001246", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001246", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001247", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001247", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001248", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001248", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001249", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001249", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001250", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001250", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001251", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001251", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001252", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001252", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001253", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001253", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001254", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001254", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001255", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001255", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001256", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001256", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001257", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001257", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001258", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001258", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001259", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001259", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001260", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001260", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001261", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001261", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001262", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001262", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001263", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001263", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001264", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001264", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001265", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001265", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001266", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001266", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001267", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001267", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001268", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001268", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001269", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001269", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001270", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001270", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001271", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001271", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001272", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001272", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001273", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001273", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001274", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001274", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001275", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001275", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001276", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001276", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001277", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001277", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001278", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001278", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001279", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001279", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001280", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001280", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001281", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001281", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001282", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001282", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001283", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001283", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001284", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001284", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001285", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001285", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001286", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001286", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001287", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001287", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001288", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001288", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001289", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001289", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001290", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001290", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001291", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001291", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001292", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001292", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001293", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001293", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001294", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001294", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001295", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001295", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001296", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001296", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001297", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001297", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001298", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001298", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001299", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001299", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001300", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001300", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001301", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001301", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001302", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001302", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001303", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001303", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001304", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001304", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001305", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001305", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001306", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001306", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001307", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001307", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001308", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001308", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001309", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001309", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001310", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001310", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001311", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001311", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001312", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001312", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001313", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001313", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001314", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001314", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001315", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001315", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001316", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001316", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001317", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001317", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001318", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001318", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001319", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001319", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001320", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001320", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001321", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001321", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001322", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001322", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001323", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001323", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001324", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001324", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001325", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001325", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001326", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001326", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001327", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001327", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001328", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001328", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001329", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001329", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001330", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001330", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001331", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001331", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001332", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001332", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001333", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001333", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001334", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001334", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001335", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001335", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001336", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001336", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001337", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001337", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001338", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001338", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001339", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001339", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001340", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001340", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001341", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001341", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001342", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001342", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001343", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001343", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001344", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001344", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001345", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001345", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001346", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001346", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001347", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001347", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001348", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001348", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001349", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001349", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001350", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001350", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001351", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001351", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001352", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001352", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001353", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001353", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001354", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001354", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001355", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001355", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001356", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001356", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001357", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001357", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001358", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001358", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001359", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001359", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001360", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001360", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001361", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001361", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001362", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001362", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001363", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001363", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001364", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001364", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001365", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001365", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001366", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001366", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001367", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001367", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001368", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001368", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001369", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001369", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001370", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001370", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001371", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001371", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001372", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001372", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001373", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001373", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001374", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001374", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001375", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001375", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001376", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001376", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001377", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001377", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001378", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001378", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001379", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001379", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001380", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001380", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001381", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001381", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001382", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001382", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001383", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001383", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001384", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001384", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001385", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001385", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001386", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001386", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001387", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001387", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001388", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001388", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001389", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001389", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001390", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001390", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001391", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001391", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001392", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001392", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001393", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001393", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001394", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001394", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001395", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001395", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001396", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001396", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001397", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001397", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001398", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001398", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001399", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001399", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001400", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001400", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001401", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001401", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001402", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001402", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001403", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001403", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001404", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001404", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001405", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001405", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001406", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001406", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001407", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001407", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001408", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001408", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001409", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001409", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001410", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001410", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001411", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001411", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001412", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001412", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001413", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001413", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001414", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001414", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001415", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001415", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001416", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001416", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001417", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001417", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001418", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001418", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001419", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001419", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001420", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001420", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001421", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001421", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001422", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001422", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001423", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001423", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001424", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001424", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001425", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001425", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001426", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001426", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001427", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001427", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001428", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001428", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001429", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001429", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001430", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001430", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001431", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001431", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001432", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001432", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001433", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001433", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001434", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001434", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001435", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001435", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001436", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001436", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001437", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001437", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001438", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001438", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001439", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001439", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001440", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001440", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001441", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001441", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001442", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001442", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001443", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001443", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001444", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001444", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001445", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001445", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001446", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001446", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001447", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001447", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001448", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001448", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001449", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001449", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001450", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001450", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001451", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001451", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001452", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001452", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001453", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001453", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001454", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001454", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001455", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001455", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001456", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001456", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001457", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001457", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001458", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001458", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001459", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001459", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001460", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001460", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001461", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001461", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001462", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001462", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001463", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001463", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001464", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001464", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001465", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001465", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001466", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001466", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001467", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001467", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001468", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001468", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001469", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001469", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001470", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001470", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001471", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001471", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001472", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001472", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001473", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001473", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001474", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001474", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001475", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001475", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001476", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001476", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001477", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001477", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001478", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001478", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001479", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001479", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001480", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001480", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001481", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001481", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001482", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001482", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001483", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001483", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001484", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001484", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001485", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001485", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001486", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001486", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001487", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001487", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001488", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001488", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001489", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001489", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001490", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001490", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001491", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001491", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001492", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001492", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001493", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001493", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001494", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001494", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001495", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001495", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001496", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001496", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001497", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001497", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001498", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001498", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001499", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001499", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001500", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001500", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001501", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001501", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001502", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001502", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001503", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001503", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001504", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001504", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001505", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001505", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001506", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001506", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001507", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001507", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001508", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001508", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001509", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001509", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001510", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001510", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001511", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001511", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001512", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001512", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001513", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001513", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001514", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001514", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001515", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001515", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001516", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001516", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001517", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001517", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001518", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001518", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001519", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001519", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001520", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001520", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001521", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001521", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001522", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001522", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001523", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001523", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001524", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001524", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001525", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001525", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001526", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001526", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001527", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001527", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001528", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001528", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001529", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001529", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001530", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001530", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001531", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001531", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001532", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001532", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001533", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001533", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001534", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001534", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001535", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001535", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001536", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001536", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001537", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001537", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001538", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001538", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001539", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001539", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001540", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001540", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001541", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001541", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001542", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001542", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001543", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001543", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001544", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001544", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001545", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001545", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001546", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001546", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001547", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001547", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001548", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001548", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001549", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001549", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001550", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001550", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001551", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001551", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001552", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001552", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001553", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001553", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001554", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001554", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001555", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001555", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001556", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001556", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001557", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001557", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001558", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001558", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001559", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001559", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001560", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001560", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001561", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001561", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001562", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001562", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001563", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001563", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001564", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001564", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001565", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001565", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001566", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001566", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001567", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001567", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001568", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001568", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001569", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001569", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001570", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001570", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001571", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001571", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001572", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001572", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001573", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001573", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001574", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001574", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001575", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001575", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001576", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001576", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001577", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001577", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001578", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001578", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001579", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001579", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001580", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001580", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001581", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001581", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001582", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001582", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001583", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001583", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001584", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001584", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001585", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001585", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001586", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001586", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001587", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001587", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001588", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001588", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001589", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001589", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001590", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001590", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001591", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001591", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001592", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001592", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001593", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001593", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001594", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001594", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001595", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001595", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001596", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001596", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001597", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001597", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001598", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001598", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001599", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001599", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001600", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001600", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001601", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001601", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001602", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001602", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001603", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001603", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001604", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001604", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@E14001605", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "E14001605", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000021", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000021", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000027", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000027", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000045", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000045", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000048", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000048", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000051", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000051", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000060", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000060", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000061", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000061", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000062", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000062", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000063", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000063", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000064", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000064", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000065", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000065", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000066", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000066", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000067", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000067", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000068", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000068", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000069", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000069", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000070", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000070", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000071", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000071", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000072", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000072", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000073", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000073", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000074", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000074", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000075", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000075", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000076", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000076", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000077", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000077", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000078", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000078", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000079", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000079", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000080", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000080", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000081", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000082", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000083", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000084", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000085", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000086", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000087", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000088", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000089", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000090", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000091", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000092", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000093", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000094", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000095", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000096", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000097", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000098", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000099", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000100", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000101", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000102", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000103", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000104", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000105", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000106", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000107", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000108", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000109", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000110", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@S14000111", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "S14000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000081", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000081", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000082", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000082", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000083", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000083", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000084", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000084", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000085", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000085", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000086", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000086", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000087", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000087", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000088", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000088", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000089", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000089", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000090", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000090", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000091", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000091", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000092", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000092", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000093", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000093", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000094", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000094", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000095", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000095", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000096", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000096", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000097", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000097", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000098", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000098", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000099", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000099", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000100", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000100", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000101", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000101", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000102", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000102", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000103", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000103", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000104", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000104", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000105", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000105", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000106", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000106", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000107", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000107", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000108", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000108", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000109", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000109", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000110", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000110", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000111", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000111", + "from": "2025-05", + "to": "2025" + }, + { + "name": "dwp.uc.households_by_area_children_3plus@W07000112", + "target_id": "dwp.uc.households_by_area_children_3plus", + "geography_level": "constituency", + "geography_id": "W07000112", + "from": "2025-05", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000001", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000002", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000003", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000004", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000007", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000012", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000013", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000014", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000015", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000016", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000017", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000018", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000019", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000020", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000021", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000022", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000023", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000024", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000025", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000026", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000027", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000030", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000031", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000032", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000033", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000034", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000035", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000036", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000037", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000038", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000039", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000040", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000041", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000042", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000043", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000044", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000045", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000046", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000047", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000049", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000050", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000051", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000052", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000053", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000054", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000055", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000056", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000057", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000058", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000059", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000060", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000061", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000062", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000063", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000064", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000065", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E06000066", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000012", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000032", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000033", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000034", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000035", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000036", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000037", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000038", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000039", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000040", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000041", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000042", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000043", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000044", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000045", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000046", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000047", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000061", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000062", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000063", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000064", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000065", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000066", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000067", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000068", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000069", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000070", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000071", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000072", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000073", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000074", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000075", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000076", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000077", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000078", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000079", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000080", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000081", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000082", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000083", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000084", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000085", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000086", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000087", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000088", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000089", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000090", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000091", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000092", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000093", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000094", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000095", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000096", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000098", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000099", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000102", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000103", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000105", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000106", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000107", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000108", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000109", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000110", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000111", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000112", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000113", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000114", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000115", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000116", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000117", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000118", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000119", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000120", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000121", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000122", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000123", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000124", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000125", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000126", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000127", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000128", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000129", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000130", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000131", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000132", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000133", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000134", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000135", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000136", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000137", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000138", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000139", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000140", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000141", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000142", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000143", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000144", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000145", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000146", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000147", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000148", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000149", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000170", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000171", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000172", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000173", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000174", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000175", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000176", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000177", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000178", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000179", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000180", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000181", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000192", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000193", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000194", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000195", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000196", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000197", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000198", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000199", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000200", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000202", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000203", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000207", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000208", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000209", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000210", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000211", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000212", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000213", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000214", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000215", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000216", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000217", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000218", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000219", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000220", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000221", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000222", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000223", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000224", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000225", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000226", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000227", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000228", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000229", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000234", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000235", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000236", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000237", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000238", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000239", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000240", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000241", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000242", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000243", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000244", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E07000245", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000001", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000002", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000003", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000004", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000007", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000012", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000013", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000014", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000015", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000016", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000017", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000018", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000019", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000021", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000022", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000023", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000024", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000025", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000026", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000027", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000028", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000029", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000030", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000031", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000032", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000033", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000034", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000035", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000036", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E08000037", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000001", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000002", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000003", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000004", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000007", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000012", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000013", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000014", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000015", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000016", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000017", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000018", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000019", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000020", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000021", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000022", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000023", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000024", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000025", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000026", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000027", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000028", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000029", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000030", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000031", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000032", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@E09000033", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000001", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000002", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000003", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000004", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000007", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@N09000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000013", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000014", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000017", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000018", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000019", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000020", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000021", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000023", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000026", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000027", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000028", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000029", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000030", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000033", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000034", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000035", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000036", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000038", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000039", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000040", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000041", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000042", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000045", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000047", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000048", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000049", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@S12000050", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000001", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000002", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000003", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000004", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000005", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000006", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000008", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000009", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000010", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000011", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000012", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000013", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000014", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000015", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000016", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000018", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000019", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000020", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000021", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000022", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000023", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_outright@W06000024", + "target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000001", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000002", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000003", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000004", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000007", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000012", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000013", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000014", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000015", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000016", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000017", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000018", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000019", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000020", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000021", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000022", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000023", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000024", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000025", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000026", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000027", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000030", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000031", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000032", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000033", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000034", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000035", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000036", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000037", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000038", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000039", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000040", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000041", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000042", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000043", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000044", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000045", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000046", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000047", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000049", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000050", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000051", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000052", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000053", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000054", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000055", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000056", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000057", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000058", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000059", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000060", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000061", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000062", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000063", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000064", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000065", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E06000066", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000012", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000032", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000033", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000034", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000035", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000036", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000037", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000038", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000039", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000040", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000041", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000042", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000043", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000044", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000045", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000046", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000047", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000061", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000062", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000063", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000064", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000065", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000066", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000067", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000068", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000069", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000070", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000071", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000072", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000073", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000074", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000075", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000076", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000077", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000078", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000079", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000080", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000081", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000082", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000083", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000084", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000085", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000086", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000087", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000088", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000089", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000090", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000091", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000092", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000093", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000094", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000095", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000096", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000098", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000099", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000102", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000103", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000105", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000106", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000107", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000108", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000109", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000110", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000111", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000112", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000113", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000114", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000115", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000116", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000117", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000118", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000119", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000120", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000121", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000122", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000123", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000124", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000125", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000126", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000127", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000128", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000129", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000130", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000131", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000132", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000133", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000134", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000135", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000136", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000137", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000138", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000139", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000140", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000141", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000142", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000143", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000144", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000145", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000146", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000147", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000148", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000149", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000170", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000171", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000172", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000173", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000174", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000175", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000176", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000177", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000178", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000179", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000180", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000181", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000192", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000193", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000194", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000195", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000196", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000197", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000198", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000199", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000200", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000202", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000203", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000207", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000208", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000209", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000210", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000211", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000212", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000213", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000214", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000215", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000216", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000217", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000218", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000219", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000220", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000221", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000222", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000223", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000224", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000225", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000226", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000227", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000228", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000229", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000234", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000235", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000236", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000237", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000238", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000239", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000240", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000241", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000242", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000243", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000244", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E07000245", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000001", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000002", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000003", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000004", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000007", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000012", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000013", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000014", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000015", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000016", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000017", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000018", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000019", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000021", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000022", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000023", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000024", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000025", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000026", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000027", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000028", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000029", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000030", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000031", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000032", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000033", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000034", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000035", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000036", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E08000037", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000001", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000002", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000003", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000004", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000007", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000012", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000013", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000014", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000015", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000016", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000017", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000018", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000019", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000020", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000021", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000022", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000023", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000024", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000025", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000026", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000027", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000028", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000029", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000030", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000031", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000032", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@E09000033", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000001", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000002", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000003", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000004", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000007", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@N09000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000013", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000014", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000017", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000018", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000019", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000020", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000021", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000023", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000026", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000027", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000028", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000029", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000030", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000033", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000034", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000035", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000036", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000038", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000039", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000040", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000041", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000042", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000045", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000047", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000048", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000049", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@S12000050", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000001", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000002", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000003", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000004", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000005", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000006", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000008", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000009", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000010", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000011", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000012", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000013", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000014", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000015", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000016", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000018", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000019", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000020", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000021", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000022", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000023", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.owned_mortgage@W06000024", + "target_id": "ons.tenure.owned_mortgage", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000001", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000002", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000003", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000004", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000007", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000012", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000013", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000014", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000015", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000016", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000017", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000018", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000019", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000020", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000021", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000022", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000023", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000024", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000025", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000026", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000027", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000030", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000031", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000032", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000033", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000034", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000035", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000036", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000037", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000038", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000039", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000040", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000041", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000042", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000043", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000044", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000045", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000046", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000047", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000049", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000050", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000051", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000052", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000053", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000054", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000055", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000056", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000057", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000058", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000059", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000060", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000061", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000062", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000063", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000064", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000065", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E06000066", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000012", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000032", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000033", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000034", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000035", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000036", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000037", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000038", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000039", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000040", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000041", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000042", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000043", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000044", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000045", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000046", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000047", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000061", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000062", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000063", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000064", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000065", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000066", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000067", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000068", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000069", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000070", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000071", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000072", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000073", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000074", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000075", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000076", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000077", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000078", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000079", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000080", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000081", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000082", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000083", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000084", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000085", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000086", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000087", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000088", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000089", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000090", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000091", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000092", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000093", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000094", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000095", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000096", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000098", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000099", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000102", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000103", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000105", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000106", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000107", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000108", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000109", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000110", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000111", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000112", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000113", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000114", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000115", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000116", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000117", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000118", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000119", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000120", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000121", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000122", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000123", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000124", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000125", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000126", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000127", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000128", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000129", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000130", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000131", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000132", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000133", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000134", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000135", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000136", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000137", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000138", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000139", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000140", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000141", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000142", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000143", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000144", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000145", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000146", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000147", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000148", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000149", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000170", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000171", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000172", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000173", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000174", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000175", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000176", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000177", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000178", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000179", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000180", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000181", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000192", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000193", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000194", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000195", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000196", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000197", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000198", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000199", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000200", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000202", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000203", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000207", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000208", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000209", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000210", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000211", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000212", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000213", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000214", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000215", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000216", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000217", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000218", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000219", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000220", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000221", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000222", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000223", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000224", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000225", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000226", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000227", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000228", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000229", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000234", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000235", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000236", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000237", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000238", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000239", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000240", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000241", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000242", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000243", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000244", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E07000245", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000001", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000002", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000003", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000004", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000007", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000012", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000013", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000014", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000015", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000016", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000017", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000018", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000019", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000021", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000022", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000023", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000024", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000025", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000026", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000027", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000028", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000029", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000030", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000031", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000032", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000033", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000034", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000035", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000036", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E08000037", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000001", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000002", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000003", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000004", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000007", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000012", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000013", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000014", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000015", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000016", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000017", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000018", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000019", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000020", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000021", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000022", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000023", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000024", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000025", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000026", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000027", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000028", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000029", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000030", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000031", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000032", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@E09000033", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000001", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000002", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000003", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000004", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000007", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@N09000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000013", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000014", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000017", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000018", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000019", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000020", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000021", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000023", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000026", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000027", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000028", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000029", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000030", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000033", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000034", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000035", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000036", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000038", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000039", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000040", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000041", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000042", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000045", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000047", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000048", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000049", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@S12000050", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000001", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000002", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000003", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000004", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000005", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000006", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000008", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000009", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000010", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000011", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000012", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000013", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000014", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000015", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000016", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000018", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000019", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000020", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000021", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000022", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000023", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.private_rent@W06000024", + "target_id": "ons.tenure.private_rent", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000001", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000002", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000003", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000004", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000007", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000012", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000013", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000014", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000015", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000016", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000017", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000018", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000019", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000020", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000021", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000022", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000023", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000024", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000025", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000026", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000027", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000030", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000031", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000032", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000033", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000034", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000035", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000036", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000037", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000038", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000038", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000039", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000039", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000040", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000040", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000041", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000041", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000042", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000042", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000043", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000043", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000044", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000044", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000045", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000045", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000046", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000046", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000047", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000047", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000049", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000049", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000050", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000050", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000051", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000051", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000052", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000052", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000053", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000053", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000054", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000054", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000055", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000055", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000056", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000056", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000057", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000057", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000058", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000058", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000059", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000059", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000060", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000060", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000061", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000061", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000062", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000062", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000063", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000063", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000064", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000064", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000065", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000065", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E06000066", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E06000066", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000012", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000032", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000033", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000034", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000035", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000036", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000037", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000038", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000038", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000039", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000039", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000040", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000040", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000041", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000041", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000042", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000042", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000043", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000043", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000044", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000044", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000045", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000045", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000046", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000046", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000047", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000047", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000061", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000061", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000062", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000062", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000063", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000063", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000064", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000064", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000065", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000065", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000066", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000066", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000067", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000067", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000068", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000068", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000069", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000069", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000070", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000070", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000071", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000071", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000072", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000072", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000073", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000073", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000074", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000074", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000075", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000075", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000076", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000076", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000077", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000077", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000078", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000078", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000079", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000079", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000080", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000080", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000081", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000081", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000082", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000082", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000083", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000083", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000084", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000084", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000085", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000085", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000086", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000086", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000087", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000087", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000088", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000088", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000089", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000089", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000090", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000090", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000091", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000091", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000092", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000092", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000093", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000093", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000094", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000094", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000095", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000095", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000096", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000096", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000098", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000098", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000099", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000099", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000102", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000102", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000103", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000103", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000105", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000105", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000106", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000106", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000107", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000107", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000108", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000108", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000109", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000109", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000110", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000110", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000111", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000111", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000112", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000112", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000113", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000113", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000114", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000114", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000115", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000115", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000116", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000116", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000117", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000117", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000118", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000118", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000119", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000119", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000120", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000120", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000121", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000121", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000122", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000122", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000123", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000123", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000124", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000124", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000125", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000125", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000126", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000126", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000127", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000127", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000128", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000128", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000129", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000129", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000130", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000130", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000131", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000131", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000132", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000132", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000133", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000133", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000134", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000134", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000135", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000135", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000136", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000136", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000137", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000137", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000138", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000138", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000139", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000139", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000140", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000140", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000141", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000141", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000142", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000142", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000143", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000143", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000144", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000144", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000145", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000145", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000146", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000146", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000147", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000147", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000148", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000148", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000149", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000149", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000170", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000170", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000171", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000171", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000172", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000172", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000173", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000173", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000174", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000174", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000175", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000175", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000176", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000176", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000177", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000177", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000178", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000178", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000179", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000179", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000180", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000180", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000181", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000181", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000192", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000192", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000193", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000193", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000194", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000194", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000195", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000195", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000196", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000196", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000197", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000197", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000198", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000198", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000199", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000199", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000200", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000200", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000202", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000202", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000203", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000203", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000207", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000207", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000208", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000208", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000209", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000209", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000210", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000210", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000211", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000211", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000212", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000212", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000213", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000213", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000214", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000214", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000215", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000215", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000216", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000216", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000217", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000217", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000218", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000218", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000219", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000219", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000220", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000220", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000221", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000221", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000222", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000222", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000223", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000223", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000224", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000224", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000225", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000225", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000226", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000226", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000227", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000227", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000228", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000228", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000229", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000229", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000234", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000234", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000235", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000235", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000236", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000236", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000237", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000237", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000238", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000238", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000239", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000239", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000240", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000240", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000241", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000241", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000242", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000242", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000243", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000243", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000244", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000244", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E07000245", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E07000245", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000001", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000002", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000003", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000004", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000007", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000012", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000013", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000014", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000015", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000016", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000017", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000018", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000019", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000021", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000022", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000023", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000024", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000025", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000026", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000027", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000028", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000028", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000029", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000029", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000030", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000031", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000032", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000033", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000034", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000034", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000035", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000035", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000036", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000036", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E08000037", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E08000037", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000001", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000002", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000003", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000004", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000007", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000012", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000013", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000014", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000015", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000016", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000017", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000017", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000018", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000019", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000020", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000021", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000022", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000023", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000024", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000024", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000025", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000025", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000026", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000026", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000027", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000027", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000028", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000028", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000029", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000029", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000030", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000030", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000031", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000031", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000032", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000032", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@E09000033", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "E09000033", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000001", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000002", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000003", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000004", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000007", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000007", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@N09000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "N09000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000005", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000006", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000008", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000010", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000011", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000013", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000013", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000014", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000014", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000017", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000017", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000018", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000018", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000019", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000019", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000020", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000020", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000021", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000021", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000023", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000023", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000026", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000026", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000027", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000027", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000028", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000028", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000029", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000029", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000030", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000030", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000033", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000033", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000034", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000034", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000035", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000035", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000036", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000036", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000038", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000038", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000039", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000039", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000040", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000040", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000041", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000041", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000042", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000042", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000045", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000045", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000047", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000047", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000048", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000048", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000049", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000049", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@S12000050", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "S12000050", + "from": "2022", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000001", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000001", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000002", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000002", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000003", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000003", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000004", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000004", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000005", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000005", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000006", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000006", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000008", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000008", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000009", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000009", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000010", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000010", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000011", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000011", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000012", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000012", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000013", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000013", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000014", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000014", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000015", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000015", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000016", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000016", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000018", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000018", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000019", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000019", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000020", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000020", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000021", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000021", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000022", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000022", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000023", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000023", + "from": "2021", + "to": "2025" + }, + { + "name": "ons.tenure.social_rent@W06000024", + "target_id": "ons.tenure.social_rent", + "geography_level": "local_authority", + "geography_id": "W06000024", + "from": "2021", + "to": "2025" + } + ], + "holds_by_target": { + "dwp.uc.households_by_area": 982, + "dwp.uc.households_by_area_children_0": 632, + "dwp.uc.households_by_area_children_1": 632, + "dwp.uc.households_by_area_children_2": 632, + "dwp.uc.households_by_area_children_3plus": 632, + "hmrc.employment_income.amount": 1009, + "hmrc.employment_income.count": 1009, + "hmrc.self_employment_income.amount": 1008, + "hmrc.self_employment_income.count": 1009, + "ons.age.0_10": 1011, + "ons.age.10_20": 1011, + "ons.age.20_30": 1011, + "ons.age.30_40": 1011, + "ons.age.40_50": 1011, + "ons.age.50_60": 1011, + "ons.age.60_70": 1011, + "ons.age.70_80": 1011, + "ons.tenure.owned_mortgage": 361, + "ons.tenure.owned_outright": 361, + "ons.tenure.private_rent": 361, + "ons.tenure.social_rent": 361 + }, "targets": { "hmrc.self_employment_income.amount": { "status": "partially_active", diff --git a/packages/microcosm-build/src/microcosm/build/uk/local_target_references.json b/packages/microcosm-build/src/microcosm/build/uk/local_target_references.json index b7ae25be8..b31a0179b 100644 --- a/packages/microcosm-build/src/microcosm/build/uk/local_target_references.json +++ b/packages/microcosm-build/src/microcosm/build/uk/local_target_references.json @@ -34,7 +34,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001064", @@ -61,7 +63,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001065", @@ -88,7 +92,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001066", @@ -115,7 +121,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001067", @@ -142,7 +150,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001068", @@ -169,7 +179,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001069", @@ -196,7 +208,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001070", @@ -223,7 +237,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001071", @@ -250,7 +266,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001072", @@ -277,7 +295,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001073", @@ -304,7 +324,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001074", @@ -331,7 +353,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001075", @@ -358,7 +382,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001076", @@ -385,7 +411,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001077", @@ -412,7 +440,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001078", @@ -439,7 +469,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001079", @@ -466,7 +498,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001080", @@ -493,7 +527,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001081", @@ -520,7 +556,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001082", @@ -547,7 +585,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001083", @@ -574,7 +614,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001084", @@ -601,7 +643,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001085", @@ -628,7 +672,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001086", @@ -655,7 +701,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001087", @@ -682,7 +730,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001088", @@ -709,7 +759,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001089", @@ -736,7 +788,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001090", @@ -763,7 +817,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001091", @@ -790,7 +846,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001092", @@ -817,7 +875,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001093", @@ -844,7 +904,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001094", @@ -871,7 +933,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001095", @@ -898,7 +962,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001096", @@ -925,7 +991,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001097", @@ -952,7 +1020,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001098", @@ -979,7 +1049,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001099", @@ -1006,7 +1078,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001100", @@ -1033,7 +1107,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001101", @@ -1060,7 +1136,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001102", @@ -1087,7 +1165,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001103", @@ -1114,7 +1194,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001104", @@ -1141,7 +1223,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001105", @@ -1168,7 +1252,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001106", @@ -1195,7 +1281,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001107", @@ -1222,7 +1310,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001108", @@ -1249,7 +1339,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001109", @@ -1276,7 +1368,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001110", @@ -1303,7 +1397,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001111", @@ -1330,7 +1426,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001112", @@ -1357,7 +1455,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001113", @@ -1384,7 +1484,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001114", @@ -1411,7 +1513,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001115", @@ -1438,7 +1542,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001116", @@ -1465,7 +1571,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001117", @@ -1492,7 +1600,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001118", @@ -1519,7 +1629,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001119", @@ -1546,7 +1658,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001120", @@ -1573,7 +1687,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001121", @@ -1600,7 +1716,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001122", @@ -1627,7 +1745,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001123", @@ -1654,7 +1774,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001124", @@ -1681,7 +1803,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001125", @@ -1708,7 +1832,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001126", @@ -1735,7 +1861,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001127", @@ -1762,7 +1890,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001128", @@ -1789,7 +1919,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001129", @@ -1816,7 +1948,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001130", @@ -1843,7 +1977,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001131", @@ -1870,7 +2006,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001132", @@ -1897,7 +2035,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001133", @@ -1924,7 +2064,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001134", @@ -1951,7 +2093,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001135", @@ -1978,7 +2122,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001136", @@ -2005,7 +2151,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001137", @@ -2032,7 +2180,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001138", @@ -2059,7 +2209,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001139", @@ -2086,7 +2238,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001140", @@ -2113,7 +2267,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001141", @@ -2140,7 +2296,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001142", @@ -2167,7 +2325,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001143", @@ -2194,7 +2354,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001144", @@ -2221,7 +2383,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001145", @@ -2248,7 +2412,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001146", @@ -2275,7 +2441,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001147", @@ -2302,7 +2470,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001148", @@ -2329,7 +2499,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001149", @@ -2356,7 +2528,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001150", @@ -2383,7 +2557,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001151", @@ -2410,7 +2586,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001152", @@ -2437,7 +2615,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001153", @@ -2464,7 +2644,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001154", @@ -2491,7 +2673,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001155", @@ -2518,7 +2702,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001156", @@ -2545,7 +2731,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001157", @@ -2572,7 +2760,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001158", @@ -2599,7 +2789,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001159", @@ -2626,7 +2818,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001160", @@ -2653,7 +2847,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001161", @@ -2680,7 +2876,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001162", @@ -2707,7 +2905,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001163", @@ -2734,7 +2934,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001164", @@ -2761,7 +2963,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001165", @@ -2788,7 +2992,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001166", @@ -2815,7 +3021,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001167", @@ -2842,7 +3050,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001168", @@ -2869,7 +3079,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001169", @@ -2896,7 +3108,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001170", @@ -2923,7 +3137,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001171", @@ -2950,7 +3166,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001172", @@ -2977,7 +3195,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001173", @@ -3004,7 +3224,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001174", @@ -3031,7 +3253,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001175", @@ -3058,7 +3282,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001176", @@ -3085,7 +3311,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001177", @@ -3112,7 +3340,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001178", @@ -3139,7 +3369,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001179", @@ -3166,7 +3398,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001180", @@ -3193,7 +3427,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001181", @@ -3220,7 +3456,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001182", @@ -3247,7 +3485,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001183", @@ -3274,7 +3514,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001184", @@ -3301,7 +3543,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001185", @@ -3328,7 +3572,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001186", @@ -3355,7 +3601,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001187", @@ -3382,7 +3630,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001188", @@ -3409,7 +3659,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001189", @@ -3436,7 +3688,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001190", @@ -3463,7 +3717,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001191", @@ -3490,7 +3746,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001192", @@ -3517,7 +3775,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001193", @@ -3544,7 +3804,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001194", @@ -3571,7 +3833,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001195", @@ -3598,7 +3862,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001196", @@ -3625,7 +3891,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001197", @@ -3652,7 +3920,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001198", @@ -3679,7 +3949,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001199", @@ -3706,7 +3978,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001200", @@ -3733,7 +4007,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001201", @@ -3760,7 +4036,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001202", @@ -3787,7 +4065,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001203", @@ -3814,7 +4094,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001204", @@ -3841,7 +4123,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001205", @@ -3868,7 +4152,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001206", @@ -3895,7 +4181,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001207", @@ -3922,7 +4210,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001208", @@ -3949,7 +4239,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001209", @@ -3976,7 +4268,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001210", @@ -4003,7 +4297,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001211", @@ -4030,7 +4326,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001212", @@ -4057,7 +4355,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001213", @@ -4084,7 +4384,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001214", @@ -4111,7 +4413,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001215", @@ -4138,7 +4442,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001216", @@ -4165,7 +4471,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001217", @@ -4192,7 +4500,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001218", @@ -4219,7 +4529,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001219", @@ -4246,7 +4558,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001220", @@ -4273,7 +4587,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001221", @@ -4300,7 +4616,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001222", @@ -4327,7 +4645,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001223", @@ -4354,7 +4674,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001224", @@ -4381,7 +4703,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001225", @@ -4408,7 +4732,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001226", @@ -4435,7 +4761,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001227", @@ -4462,7 +4790,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001228", @@ -4489,7 +4819,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001229", @@ -4516,7 +4848,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001230", @@ -4543,7 +4877,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001231", @@ -4570,7 +4906,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001232", @@ -4597,7 +4935,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001233", @@ -4624,7 +4964,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001234", @@ -4651,7 +4993,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001235", @@ -4678,7 +5022,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001236", @@ -4705,7 +5051,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001237", @@ -4732,7 +5080,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001238", @@ -4759,7 +5109,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001239", @@ -4786,7 +5138,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001240", @@ -4813,7 +5167,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001241", @@ -4840,7 +5196,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001242", @@ -4867,7 +5225,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001243", @@ -4894,7 +5254,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001244", @@ -4921,7 +5283,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001245", @@ -4948,7 +5312,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001246", @@ -4975,7 +5341,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001247", @@ -5002,7 +5370,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001248", @@ -5029,7 +5399,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001249", @@ -5056,7 +5428,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001250", @@ -5083,7 +5457,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001251", @@ -5110,7 +5486,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001252", @@ -5137,7 +5515,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001253", @@ -5164,7 +5544,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001254", @@ -5191,7 +5573,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001255", @@ -5218,7 +5602,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001256", @@ -5245,7 +5631,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001257", @@ -5272,7 +5660,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001258", @@ -5299,7 +5689,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001259", @@ -5326,7 +5718,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001260", @@ -5353,7 +5747,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001261", @@ -5380,7 +5776,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001262", @@ -5407,7 +5805,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001263", @@ -5434,7 +5834,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001264", @@ -5461,7 +5863,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001265", @@ -5488,7 +5892,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001266", @@ -5515,7 +5921,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001267", @@ -5542,7 +5950,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001268", @@ -5569,7 +5979,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001269", @@ -5596,7 +6008,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001270", @@ -5623,7 +6037,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001271", @@ -5650,7 +6066,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001272", @@ -5677,7 +6095,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001273", @@ -5704,7 +6124,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001274", @@ -5731,7 +6153,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001275", @@ -5758,7 +6182,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001276", @@ -5785,7 +6211,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001277", @@ -5812,7 +6240,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001278", @@ -5839,7 +6269,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001279", @@ -5866,7 +6298,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001280", @@ -5893,7 +6327,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001281", @@ -5920,7 +6356,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001282", @@ -5947,7 +6385,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001283", @@ -5974,7 +6414,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001284", @@ -6001,7 +6443,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001285", @@ -6028,7 +6472,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001286", @@ -6055,7 +6501,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001287", @@ -6082,7 +6530,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001288", @@ -6109,7 +6559,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001289", @@ -6136,7 +6588,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001290", @@ -6163,7 +6617,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001291", @@ -6190,7 +6646,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001292", @@ -6217,7 +6675,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001293", @@ -6244,7 +6704,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001294", @@ -6271,7 +6733,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001295", @@ -6298,7 +6762,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001296", @@ -6325,7 +6791,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001297", @@ -6352,7 +6820,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001298", @@ -6379,7 +6849,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001299", @@ -6406,7 +6878,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001300", @@ -6433,7 +6907,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001301", @@ -6460,7 +6936,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001302", @@ -6487,7 +6965,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001303", @@ -6514,7 +6994,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001304", @@ -6541,7 +7023,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001305", @@ -6568,7 +7052,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001306", @@ -6595,7 +7081,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001307", @@ -6622,7 +7110,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001308", @@ -6649,7 +7139,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001309", @@ -6676,7 +7168,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001310", @@ -6703,7 +7197,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001311", @@ -6730,7 +7226,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001312", @@ -6757,7 +7255,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001313", @@ -6784,7 +7284,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001314", @@ -6811,7 +7313,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001315", @@ -6838,7 +7342,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001316", @@ -6865,7 +7371,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001317", @@ -6892,7 +7400,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001318", @@ -6919,7 +7429,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001319", @@ -6946,7 +7458,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001320", @@ -6973,7 +7487,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001321", @@ -7000,7 +7516,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001322", @@ -7027,7 +7545,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001323", @@ -7054,7 +7574,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001324", @@ -7081,7 +7603,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001325", @@ -7108,7 +7632,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001326", @@ -7135,7 +7661,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001327", @@ -7162,7 +7690,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001328", @@ -7189,7 +7719,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001329", @@ -7216,7 +7748,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001330", @@ -7243,7 +7777,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001331", @@ -7270,7 +7806,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001332", @@ -7297,7 +7835,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001333", @@ -7324,7 +7864,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001334", @@ -7351,7 +7893,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001335", @@ -7378,7 +7922,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001336", @@ -7405,7 +7951,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001337", @@ -7432,7 +7980,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001338", @@ -7459,7 +8009,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001339", @@ -7486,7 +8038,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001340", @@ -7513,7 +8067,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001341", @@ -7540,7 +8096,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001342", @@ -7567,7 +8125,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001343", @@ -7594,7 +8154,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001344", @@ -7621,7 +8183,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001345", @@ -7648,7 +8212,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001346", @@ -7675,7 +8241,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001347", @@ -7702,7 +8270,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001348", @@ -7729,7 +8299,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001349", @@ -7756,7 +8328,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001350", @@ -7783,7 +8357,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001351", @@ -7810,7 +8386,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001352", @@ -7837,7 +8415,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001353", @@ -7864,7 +8444,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001354", @@ -7891,7 +8473,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001355", @@ -7918,7 +8502,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001356", @@ -7945,7 +8531,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001357", @@ -7972,7 +8560,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001358", @@ -7999,7 +8589,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001359", @@ -8026,7 +8618,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001360", @@ -8053,7 +8647,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001361", @@ -8080,7 +8676,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001362", @@ -8107,7 +8705,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001363", @@ -8134,7 +8734,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001364", @@ -8161,7 +8763,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001365", @@ -8188,7 +8792,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001366", @@ -8215,7 +8821,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001367", @@ -8242,7 +8850,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001368", @@ -8269,7 +8879,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001369", @@ -8296,7 +8908,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001370", @@ -8323,7 +8937,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001371", @@ -8350,7 +8966,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001372", @@ -8377,7 +8995,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001373", @@ -8404,7 +9024,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001374", @@ -8431,7 +9053,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001375", @@ -8458,7 +9082,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001376", @@ -8485,7 +9111,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001377", @@ -8512,7 +9140,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001378", @@ -8539,7 +9169,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001379", @@ -8566,7 +9198,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001380", @@ -8593,7 +9227,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001381", @@ -8620,7 +9256,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001382", @@ -8647,7 +9285,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001383", @@ -8674,7 +9314,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001384", @@ -8701,7 +9343,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001385", @@ -8728,7 +9372,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001386", @@ -8755,7 +9401,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001387", @@ -8782,7 +9430,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001388", @@ -8809,7 +9459,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001389", @@ -8836,7 +9488,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001390", @@ -8863,7 +9517,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001391", @@ -8890,7 +9546,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001392", @@ -8917,7 +9575,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001393", @@ -8944,7 +9604,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001394", @@ -8971,7 +9633,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001395", @@ -8998,7 +9662,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001396", @@ -9025,7 +9691,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001397", @@ -9052,7 +9720,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001398", @@ -9079,7 +9749,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001399", @@ -9106,7 +9778,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001400", @@ -9133,7 +9807,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001401", @@ -9160,7 +9836,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001402", @@ -9187,7 +9865,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001403", @@ -9214,7 +9894,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001404", @@ -9241,7 +9923,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001405", @@ -9268,7 +9952,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001406", @@ -9295,7 +9981,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001407", @@ -9322,7 +10010,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001408", @@ -9349,7 +10039,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001409", @@ -9376,7 +10068,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001410", @@ -9403,7 +10097,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001411", @@ -9430,7 +10126,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001412", @@ -9457,7 +10155,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001413", @@ -9484,7 +10184,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001414", @@ -9511,7 +10213,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001415", @@ -9538,7 +10242,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001417", @@ -9565,7 +10271,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001418", @@ -9592,7 +10300,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001419", @@ -9619,7 +10329,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001420", @@ -9646,7 +10358,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001421", @@ -9673,7 +10387,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001422", @@ -9700,7 +10416,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001423", @@ -9727,7 +10445,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001424", @@ -9754,7 +10474,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001425", @@ -9781,7 +10503,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001426", @@ -9808,7 +10532,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001427", @@ -9835,7 +10561,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001428", @@ -9862,7 +10590,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001429", @@ -9889,7 +10619,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001430", @@ -9916,7 +10648,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001431", @@ -9943,7 +10677,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001432", @@ -9970,7 +10706,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001433", @@ -9997,7 +10735,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001434", @@ -10024,7 +10764,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001435", @@ -10051,7 +10793,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001436", @@ -10078,7 +10822,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001437", @@ -10105,7 +10851,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001438", @@ -10132,7 +10880,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001439", @@ -10159,7 +10909,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001440", @@ -10186,7 +10938,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001441", @@ -10213,7 +10967,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001442", @@ -10240,7 +10996,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001443", @@ -10267,7 +11025,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001444", @@ -10294,7 +11054,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001445", @@ -10321,7 +11083,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001446", @@ -10348,7 +11112,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001447", @@ -10375,7 +11141,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001448", @@ -10402,7 +11170,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001449", @@ -10429,7 +11199,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001450", @@ -10456,7 +11228,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001451", @@ -10483,7 +11257,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001452", @@ -10510,7 +11286,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001453", @@ -10537,7 +11315,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001454", @@ -10564,7 +11344,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001455", @@ -10591,7 +11373,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001456", @@ -10618,7 +11402,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001457", @@ -10645,7 +11431,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001458", @@ -10672,7 +11460,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001459", @@ -10699,7 +11489,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001460", @@ -10726,7 +11518,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001461", @@ -10753,7 +11547,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001462", @@ -10780,7 +11576,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001463", @@ -10807,7 +11605,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001464", @@ -10834,7 +11634,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001465", @@ -10861,7 +11663,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001466", @@ -10888,7 +11692,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001467", @@ -10915,7 +11721,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001468", @@ -10942,7 +11750,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001469", @@ -10969,7 +11779,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001470", @@ -10996,7 +11808,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001471", @@ -11023,7 +11837,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001472", @@ -11050,7 +11866,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001473", @@ -11077,7 +11895,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001474", @@ -11104,7 +11924,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001475", @@ -11131,7 +11953,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001476", @@ -11158,7 +11982,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001477", @@ -11185,7 +12011,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001478", @@ -11212,7 +12040,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001479", @@ -11239,7 +12069,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001480", @@ -11266,7 +12098,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001481", @@ -11293,7 +12127,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001482", @@ -11320,7 +12156,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001483", @@ -11347,7 +12185,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001484", @@ -11374,7 +12214,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001485", @@ -11401,7 +12243,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001486", @@ -11428,7 +12272,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001487", @@ -11455,7 +12301,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001488", @@ -11482,7 +12330,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001489", @@ -11509,7 +12359,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001490", @@ -11536,7 +12388,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001491", @@ -11563,7 +12417,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001492", @@ -11590,7 +12446,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001493", @@ -11617,7 +12475,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001494", @@ -11644,7 +12504,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001495", @@ -11671,7 +12533,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001496", @@ -11698,7 +12562,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001497", @@ -11725,7 +12591,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001498", @@ -11752,7 +12620,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001499", @@ -11779,7 +12649,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001500", @@ -11806,7 +12678,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001501", @@ -11833,7 +12707,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001502", @@ -11860,7 +12736,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001503", @@ -11887,7 +12765,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001504", @@ -11914,7 +12794,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001505", @@ -11941,7 +12823,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001506", @@ -11968,7 +12852,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001507", @@ -11995,7 +12881,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001508", @@ -12022,7 +12910,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001509", @@ -12049,7 +12939,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001510", @@ -12076,7 +12968,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001511", @@ -12103,7 +12997,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001512", @@ -12130,7 +13026,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001513", @@ -12157,7 +13055,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001514", @@ -12184,7 +13084,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001515", @@ -12211,7 +13113,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001516", @@ -12238,7 +13142,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001517", @@ -12265,7 +13171,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001518", @@ -12292,7 +13200,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001519", @@ -12319,7 +13229,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001520", @@ -12346,7 +13258,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001521", @@ -12373,7 +13287,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001522", @@ -12400,7 +13316,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001523", @@ -12427,7 +13345,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001524", @@ -12454,7 +13374,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001525", @@ -12481,7 +13403,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001526", @@ -12508,7 +13432,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001527", @@ -12535,7 +13461,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001528", @@ -12562,7 +13490,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001529", @@ -12589,7 +13519,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001530", @@ -12616,7 +13548,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001531", @@ -12643,7 +13577,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001532", @@ -12670,7 +13606,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001533", @@ -12697,7 +13635,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001534", @@ -12724,7 +13664,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001535", @@ -12751,7 +13693,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001536", @@ -12778,7 +13722,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001537", @@ -12805,7 +13751,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001538", @@ -12832,7 +13780,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001539", @@ -12859,7 +13809,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001540", @@ -12886,7 +13838,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001541", @@ -12913,7 +13867,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001542", @@ -12940,7 +13896,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001543", @@ -12967,7 +13925,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001544", @@ -12994,7 +13954,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001545", @@ -13021,7 +13983,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001546", @@ -13048,7 +14012,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001547", @@ -13075,7 +14041,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001548", @@ -13102,7 +14070,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001549", @@ -13129,7 +14099,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001550", @@ -13156,7 +14128,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001551", @@ -13183,7 +14157,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001552", @@ -13210,7 +14186,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001553", @@ -13237,7 +14215,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001554", @@ -13264,7 +14244,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001555", @@ -13291,7 +14273,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001556", @@ -13318,7 +14302,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001557", @@ -13345,7 +14331,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001558", @@ -13372,7 +14360,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001559", @@ -13399,7 +14389,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001560", @@ -13426,7 +14418,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001561", @@ -13453,7 +14447,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001562", @@ -13480,7 +14476,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001563", @@ -13507,7 +14505,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001564", @@ -13534,7 +14534,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001565", @@ -13561,7 +14563,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001566", @@ -13588,7 +14592,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001567", @@ -13615,7 +14621,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001568", @@ -13642,7 +14650,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001569", @@ -13669,7 +14679,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001570", @@ -13696,7 +14708,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001571", @@ -13723,7 +14737,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001572", @@ -13750,7 +14766,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001573", @@ -13777,7 +14795,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001574", @@ -13804,7 +14824,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001575", @@ -13831,7 +14853,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001576", @@ -13858,7 +14882,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001577", @@ -13885,7 +14911,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001578", @@ -13912,7 +14940,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001579", @@ -13939,7 +14969,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001580", @@ -13966,7 +14998,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001581", @@ -13993,7 +15027,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001582", @@ -14020,7 +15056,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001583", @@ -14047,7 +15085,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001584", @@ -14074,7 +15114,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001585", @@ -14101,7 +15143,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001586", @@ -14128,7 +15172,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001587", @@ -14155,7 +15201,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001588", @@ -14182,7 +15230,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001589", @@ -14209,7 +15259,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001590", @@ -14236,7 +15288,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001591", @@ -14263,7 +15317,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001592", @@ -14290,7 +15346,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001593", @@ -14317,7 +15375,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001594", @@ -14344,7 +15404,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001595", @@ -14371,7 +15433,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001596", @@ -14398,7 +15462,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001597", @@ -14425,7 +15491,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001598", @@ -14452,7 +15520,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001599", @@ -14479,7 +15549,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001600", @@ -14506,7 +15578,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001601", @@ -14533,7 +15607,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001602", @@ -14560,7 +15636,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001603", @@ -14587,7 +15665,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001604", @@ -14614,7 +15694,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E14001605", @@ -14641,7 +15723,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000001", @@ -14668,7 +15752,9 @@ "geography_level": "constituency", "geography_id": "N05000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000002", @@ -14695,7 +15781,9 @@ "geography_level": "constituency", "geography_id": "N05000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000003", @@ -14722,7 +15810,9 @@ "geography_level": "constituency", "geography_id": "N05000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000004", @@ -14749,7 +15839,9 @@ "geography_level": "constituency", "geography_id": "N05000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000005", @@ -14776,7 +15868,9 @@ "geography_level": "constituency", "geography_id": "N05000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000006", @@ -14803,7 +15897,9 @@ "geography_level": "constituency", "geography_id": "N05000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000007", @@ -14830,7 +15926,9 @@ "geography_level": "constituency", "geography_id": "N05000007" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000008", @@ -14857,7 +15955,9 @@ "geography_level": "constituency", "geography_id": "N05000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000009", @@ -14884,7 +15984,9 @@ "geography_level": "constituency", "geography_id": "N05000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000010", @@ -14911,7 +16013,9 @@ "geography_level": "constituency", "geography_id": "N05000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000011", @@ -14938,7 +16042,9 @@ "geography_level": "constituency", "geography_id": "N05000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000012", @@ -14965,7 +16071,9 @@ "geography_level": "constituency", "geography_id": "N05000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000013", @@ -14992,7 +16100,9 @@ "geography_level": "constituency", "geography_id": "N05000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000014", @@ -15019,7 +16129,9 @@ "geography_level": "constituency", "geography_id": "N05000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000015", @@ -15046,7 +16158,9 @@ "geography_level": "constituency", "geography_id": "N05000015" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000016", @@ -15073,7 +16187,9 @@ "geography_level": "constituency", "geography_id": "N05000016" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000017", @@ -15100,7 +16216,9 @@ "geography_level": "constituency", "geography_id": "N05000017" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N05000018", @@ -15127,7 +16245,9 @@ "geography_level": "constituency", "geography_id": "N05000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000021", @@ -15154,7 +16274,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000027", @@ -15181,7 +16303,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000045", @@ -15208,7 +16332,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000048", @@ -15235,7 +16361,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000051", @@ -15262,7 +16390,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000060", @@ -15289,7 +16419,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000061", @@ -15316,7 +16448,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000062", @@ -15343,7 +16477,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000063", @@ -15370,7 +16506,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000064", @@ -15397,7 +16535,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000065", @@ -15424,7 +16564,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000066", @@ -15451,7 +16593,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000067", @@ -15478,7 +16622,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000068", @@ -15505,7 +16651,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000069", @@ -15532,7 +16680,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000070", @@ -15559,7 +16709,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000071", @@ -15586,7 +16738,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000072", @@ -15613,7 +16767,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000073", @@ -15640,7 +16796,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000074", @@ -15667,7 +16825,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000075", @@ -15694,7 +16854,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000076", @@ -15721,7 +16883,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000077", @@ -15748,7 +16912,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000078", @@ -15775,7 +16941,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000079", @@ -15802,7 +16970,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000080", @@ -15829,7 +16999,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000081", @@ -15856,7 +17028,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000082", @@ -15883,7 +17057,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000083", @@ -15910,7 +17086,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000084", @@ -15937,7 +17115,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000085", @@ -15964,7 +17144,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000086", @@ -15991,7 +17173,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000087", @@ -16018,7 +17202,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000088", @@ -16045,7 +17231,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000089", @@ -16072,7 +17260,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000090", @@ -16099,7 +17289,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000091", @@ -16126,7 +17318,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000092", @@ -16153,7 +17347,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000093", @@ -16180,7 +17376,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000094", @@ -16207,7 +17405,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000095", @@ -16234,7 +17434,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000096", @@ -16261,7 +17463,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000097", @@ -16288,7 +17492,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000098", @@ -16315,7 +17521,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000099", @@ -16342,7 +17550,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000100", @@ -16369,7 +17579,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000101", @@ -16396,7 +17608,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000102", @@ -16423,7 +17637,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000103", @@ -16450,7 +17666,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000104", @@ -16477,7 +17695,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000105", @@ -16504,7 +17724,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000106", @@ -16531,7 +17753,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000107", @@ -16558,7 +17782,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000108", @@ -16585,7 +17811,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000109", @@ -16612,7 +17840,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000110", @@ -16639,7 +17869,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S14000111", @@ -16666,7 +17898,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000081", @@ -16693,7 +17927,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000082", @@ -16720,7 +17956,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000083", @@ -16747,7 +17985,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000084", @@ -16774,7 +18014,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000085", @@ -16801,7 +18043,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000086", @@ -16828,7 +18072,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000087", @@ -16855,7 +18101,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000088", @@ -16882,7 +18130,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000089", @@ -16909,7 +18159,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000090", @@ -16936,7 +18188,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000091", @@ -16963,7 +18217,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000092", @@ -16990,7 +18246,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000093", @@ -17017,7 +18275,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000094", @@ -17044,7 +18304,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000095", @@ -17071,7 +18333,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000096", @@ -17098,7 +18362,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000097", @@ -17125,7 +18391,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000098", @@ -17152,7 +18420,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000099", @@ -17179,7 +18449,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000100", @@ -17206,7 +18478,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000101", @@ -17233,7 +18507,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000102", @@ -17260,7 +18536,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000103", @@ -17287,7 +18565,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000104", @@ -17314,7 +18594,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000105", @@ -17341,7 +18623,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000106", @@ -17368,7 +18652,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000107", @@ -17395,7 +18681,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000108", @@ -17422,7 +18710,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000109", @@ -17449,7 +18739,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000110", @@ -17476,7 +18768,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000111", @@ -17503,7 +18797,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W07000112", @@ -17530,7 +18826,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000001", @@ -17557,7 +18855,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000002", @@ -17584,7 +18884,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000003", @@ -17611,7 +18913,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000004", @@ -17638,7 +18942,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000005", @@ -17665,7 +18971,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000006", @@ -17692,7 +19000,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000007", @@ -17719,7 +19029,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000008", @@ -17746,7 +19058,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000009", @@ -17773,7 +19087,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000010", @@ -17800,7 +19116,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000011", @@ -17827,7 +19145,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000012", @@ -17854,7 +19174,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000013", @@ -17881,7 +19203,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000014", @@ -17908,7 +19232,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000015", @@ -17935,7 +19261,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000016", @@ -17962,7 +19290,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000017", @@ -17989,7 +19319,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000018", @@ -18016,7 +19348,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000019", @@ -18043,7 +19377,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000020", @@ -18070,7 +19406,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000021", @@ -18097,7 +19435,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000022", @@ -18124,7 +19464,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000023", @@ -18151,7 +19493,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000024", @@ -18178,7 +19522,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000025", @@ -18205,7 +19551,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000026", @@ -18232,7 +19580,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000030", @@ -18259,7 +19609,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000031", @@ -18286,7 +19638,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000032", @@ -18313,7 +19667,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000033", @@ -18340,7 +19696,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000034", @@ -18367,7 +19725,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000035", @@ -18394,7 +19754,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000036", @@ -18421,7 +19783,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000037", @@ -18448,7 +19812,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000038", @@ -18475,7 +19841,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000039", @@ -18502,7 +19870,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000040", @@ -18529,7 +19899,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000041", @@ -18556,7 +19928,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000042", @@ -18583,7 +19957,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000043", @@ -18610,7 +19986,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000044", @@ -18637,7 +20015,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000045", @@ -18664,7 +20044,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000046", @@ -18691,7 +20073,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000047", @@ -18718,7 +20102,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000049", @@ -18745,7 +20131,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000050", @@ -18772,7 +20160,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000051", @@ -18799,7 +20189,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000052", @@ -18826,7 +20218,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000054", @@ -18853,7 +20247,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000055", @@ -18880,7 +20276,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000056", @@ -18907,7 +20305,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000057", @@ -18934,7 +20334,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000058", @@ -18961,7 +20363,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000059", @@ -18988,7 +20392,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000060", @@ -19015,7 +20421,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000061", @@ -19042,7 +20450,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000062", @@ -19069,7 +20479,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000063", @@ -19096,7 +20508,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000064", @@ -19123,7 +20537,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000065", @@ -19150,7 +20566,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E06000066", @@ -19177,7 +20595,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000008", @@ -19204,7 +20624,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000009", @@ -19231,7 +20653,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000010", @@ -19258,7 +20682,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000011", @@ -19285,7 +20711,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000012", @@ -19312,7 +20740,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000032", @@ -19339,7 +20769,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000033", @@ -19366,7 +20798,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000034", @@ -19393,7 +20827,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000035", @@ -19420,7 +20856,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000036", @@ -19447,7 +20885,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000037", @@ -19474,7 +20914,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000038", @@ -19501,7 +20943,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000039", @@ -19528,7 +20972,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000040", @@ -19555,7 +21001,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000041", @@ -19582,7 +21030,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000042", @@ -19609,7 +21059,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000043", @@ -19636,7 +21088,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000044", @@ -19663,7 +21117,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000045", @@ -19690,7 +21146,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000046", @@ -19717,7 +21175,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000047", @@ -19744,7 +21204,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000061", @@ -19771,7 +21233,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000062", @@ -19798,7 +21262,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000063", @@ -19825,7 +21291,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000064", @@ -19852,7 +21320,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000065", @@ -19879,7 +21349,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000066", @@ -19906,7 +21378,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000067", @@ -19933,7 +21407,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000068", @@ -19960,7 +21436,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000069", @@ -19987,7 +21465,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000070", @@ -20014,7 +21494,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000071", @@ -20041,7 +21523,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000072", @@ -20068,7 +21552,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000073", @@ -20095,7 +21581,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000074", @@ -20122,7 +21610,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000075", @@ -20149,7 +21639,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000076", @@ -20176,7 +21668,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000077", @@ -20203,7 +21697,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000078", @@ -20230,7 +21726,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000079", @@ -20257,7 +21755,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000080", @@ -20284,7 +21784,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000081", @@ -20311,7 +21813,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000082", @@ -20338,7 +21842,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000083", @@ -20365,7 +21871,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000084", @@ -20392,7 +21900,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000085", @@ -20419,7 +21929,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000086", @@ -20446,7 +21958,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000087", @@ -20473,7 +21987,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000088", @@ -20500,7 +22016,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000089", @@ -20527,7 +22045,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000090", @@ -20554,7 +22074,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000091", @@ -20581,7 +22103,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000092", @@ -20608,7 +22132,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000093", @@ -20635,7 +22161,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000094", @@ -20662,7 +22190,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000095", @@ -20689,7 +22219,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000096", @@ -20716,7 +22248,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000098", @@ -20743,7 +22277,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000099", @@ -20770,7 +22306,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000102", @@ -20797,7 +22335,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000103", @@ -20824,7 +22364,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000105", @@ -20851,7 +22393,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000106", @@ -20878,7 +22422,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000107", @@ -20905,7 +22451,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000108", @@ -20932,7 +22480,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000109", @@ -20959,7 +22509,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000110", @@ -20986,7 +22538,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000111", @@ -21013,7 +22567,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000112", @@ -21040,7 +22596,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000113", @@ -21067,7 +22625,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000114", @@ -21094,7 +22654,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000115", @@ -21121,7 +22683,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000116", @@ -21148,7 +22712,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000117", @@ -21175,7 +22741,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000118", @@ -21202,7 +22770,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000119", @@ -21229,7 +22799,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000120", @@ -21256,7 +22828,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000121", @@ -21283,7 +22857,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000122", @@ -21310,7 +22886,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000123", @@ -21337,7 +22915,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000124", @@ -21364,7 +22944,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000125", @@ -21391,7 +22973,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000126", @@ -21418,7 +23002,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000127", @@ -21445,7 +23031,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000128", @@ -21472,7 +23060,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000129", @@ -21499,7 +23089,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000130", @@ -21526,7 +23118,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000131", @@ -21553,7 +23147,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000132", @@ -21580,7 +23176,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000133", @@ -21607,7 +23205,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000134", @@ -21634,7 +23234,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000135", @@ -21661,7 +23263,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000136", @@ -21688,7 +23292,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000137", @@ -21715,7 +23321,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000138", @@ -21742,7 +23350,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000139", @@ -21769,7 +23379,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000140", @@ -21796,7 +23408,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000141", @@ -21823,7 +23437,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000142", @@ -21850,7 +23466,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000143", @@ -21877,7 +23495,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000144", @@ -21904,7 +23524,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000145", @@ -21931,7 +23553,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000146", @@ -21958,7 +23582,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000147", @@ -21985,7 +23611,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000148", @@ -22012,7 +23640,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000149", @@ -22039,7 +23669,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000170", @@ -22066,7 +23698,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000171", @@ -22093,7 +23727,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000172", @@ -22120,7 +23756,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000173", @@ -22147,7 +23785,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000174", @@ -22174,7 +23814,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000175", @@ -22201,7 +23843,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000176", @@ -22228,7 +23872,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000177", @@ -22255,7 +23901,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000178", @@ -22282,7 +23930,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000179", @@ -22309,7 +23959,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000180", @@ -22336,7 +23988,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000181", @@ -22363,7 +24017,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000192", @@ -22390,7 +24046,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000193", @@ -22417,7 +24075,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000194", @@ -22444,7 +24104,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000195", @@ -22471,7 +24133,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000196", @@ -22498,7 +24162,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000197", @@ -22525,7 +24191,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000198", @@ -22552,7 +24220,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000199", @@ -22579,7 +24249,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000200", @@ -22606,7 +24278,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000202", @@ -22633,7 +24307,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000203", @@ -22660,7 +24336,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000207", @@ -22687,7 +24365,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000208", @@ -22714,7 +24394,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000209", @@ -22741,7 +24423,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000210", @@ -22768,7 +24452,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000211", @@ -22795,7 +24481,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000212", @@ -22822,7 +24510,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000213", @@ -22849,7 +24539,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000214", @@ -22876,7 +24568,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000215", @@ -22903,7 +24597,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000216", @@ -22930,7 +24626,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000217", @@ -22957,7 +24655,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000218", @@ -22984,7 +24684,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000219", @@ -23011,7 +24713,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000220", @@ -23038,7 +24742,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000221", @@ -23065,7 +24771,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000222", @@ -23092,7 +24800,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000223", @@ -23119,7 +24829,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000224", @@ -23146,7 +24858,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000225", @@ -23173,7 +24887,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000226", @@ -23200,7 +24916,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000227", @@ -23227,7 +24945,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000228", @@ -23254,7 +24974,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000229", @@ -23281,7 +25003,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000234", @@ -23308,7 +25032,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000235", @@ -23335,7 +25061,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000236", @@ -23362,7 +25090,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000237", @@ -23389,7 +25119,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000238", @@ -23416,7 +25148,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000239", @@ -23443,7 +25177,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000240", @@ -23470,7 +25206,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000241", @@ -23497,7 +25235,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000242", @@ -23524,7 +25264,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000243", @@ -23551,7 +25293,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000244", @@ -23578,7 +25322,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E07000245", @@ -23605,7 +25351,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000001", @@ -23632,7 +25380,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000002", @@ -23659,7 +25409,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000003", @@ -23686,7 +25438,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000004", @@ -23713,7 +25467,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000005", @@ -23740,7 +25496,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000006", @@ -23767,7 +25525,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000007", @@ -23794,7 +25554,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000008", @@ -23821,7 +25583,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000009", @@ -23848,7 +25612,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000010", @@ -23875,7 +25641,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000011", @@ -23902,7 +25670,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000012", @@ -23929,7 +25699,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000013", @@ -23956,7 +25728,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000014", @@ -23983,7 +25757,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000015", @@ -24010,7 +25786,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000016", @@ -24037,7 +25815,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000017", @@ -24064,7 +25844,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000018", @@ -24091,7 +25873,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000019", @@ -24118,7 +25902,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000021", @@ -24145,7 +25931,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000022", @@ -24172,7 +25960,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000023", @@ -24199,7 +25989,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000024", @@ -24226,7 +26018,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000025", @@ -24253,7 +26047,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000026", @@ -24280,7 +26076,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000027", @@ -24307,7 +26105,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000028", @@ -24334,7 +26134,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000029", @@ -24361,7 +26163,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000030", @@ -24388,7 +26192,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000031", @@ -24415,7 +26221,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000032", @@ -24442,7 +26250,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000033", @@ -24469,7 +26279,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000034", @@ -24496,7 +26308,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000035", @@ -24523,7 +26337,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000036", @@ -24550,7 +26366,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E08000037", @@ -24577,7 +26395,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000001", @@ -24604,7 +26424,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000002", @@ -24631,7 +26453,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000003", @@ -24658,7 +26482,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000004", @@ -24685,7 +26511,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000005", @@ -24712,7 +26540,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000006", @@ -24739,7 +26569,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000007", @@ -24766,7 +26598,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000008", @@ -24793,7 +26627,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000009", @@ -24820,7 +26656,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000010", @@ -24847,7 +26685,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000011", @@ -24874,7 +26714,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000012", @@ -24901,7 +26743,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000013", @@ -24928,7 +26772,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000014", @@ -24955,7 +26801,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000015", @@ -24982,7 +26830,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000016", @@ -25009,7 +26859,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000017", @@ -25036,7 +26888,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000018", @@ -25063,7 +26917,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000019", @@ -25090,7 +26946,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000020", @@ -25117,7 +26975,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000021", @@ -25144,7 +27004,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000022", @@ -25171,7 +27033,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000023", @@ -25198,7 +27062,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000024", @@ -25225,7 +27091,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000025", @@ -25252,7 +27120,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000026", @@ -25279,7 +27149,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000027", @@ -25306,7 +27178,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000028", @@ -25333,7 +27207,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000029", @@ -25360,7 +27236,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000030", @@ -25387,7 +27265,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000031", @@ -25414,7 +27294,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000032", @@ -25441,7 +27323,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@E09000033", @@ -25468,7 +27352,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000001", @@ -25495,7 +27381,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000002", @@ -25522,7 +27410,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000003", @@ -25549,7 +27439,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000004", @@ -25576,7 +27468,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000005", @@ -25603,7 +27497,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000006", @@ -25630,7 +27526,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000007", @@ -25657,7 +27555,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000008", @@ -25684,7 +27584,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000009", @@ -25711,7 +27613,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000010", @@ -25738,7 +27642,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@N09000011", @@ -25765,7 +27671,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000005", @@ -25792,7 +27700,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000006", @@ -25819,7 +27729,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000008", @@ -25846,7 +27758,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000010", @@ -25873,7 +27787,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000011", @@ -25900,7 +27816,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000013", @@ -25927,7 +27845,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000014", @@ -25954,7 +27874,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000017", @@ -25981,7 +27903,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000018", @@ -26008,7 +27932,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000019", @@ -26035,7 +27961,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000020", @@ -26062,7 +27990,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000021", @@ -26089,7 +28019,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000023", @@ -26116,7 +28048,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000026", @@ -26143,7 +28077,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000027", @@ -26170,7 +28106,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000028", @@ -26197,7 +28135,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000029", @@ -26224,7 +28164,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000030", @@ -26251,7 +28193,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000033", @@ -26278,7 +28222,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000034", @@ -26305,7 +28251,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000035", @@ -26332,7 +28280,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000036", @@ -26359,7 +28309,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000038", @@ -26386,7 +28338,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000039", @@ -26413,7 +28367,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000040", @@ -26440,7 +28396,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000041", @@ -26467,7 +28425,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000042", @@ -26494,7 +28454,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000045", @@ -26521,7 +28483,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000047", @@ -26548,7 +28512,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000048", @@ -26575,7 +28541,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000049", @@ -26602,7 +28570,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@S12000050", @@ -26629,7 +28599,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000001", @@ -26656,7 +28628,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000002", @@ -26683,7 +28657,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000003", @@ -26710,7 +28686,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000004", @@ -26737,7 +28715,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000005", @@ -26764,7 +28744,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000006", @@ -26791,7 +28773,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000008", @@ -26818,7 +28802,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000009", @@ -26845,7 +28831,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000010", @@ -26872,7 +28860,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000011", @@ -26899,7 +28889,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000012", @@ -26926,7 +28918,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000013", @@ -26953,7 +28947,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000014", @@ -26980,7 +28976,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000015", @@ -27007,7 +29005,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000016", @@ -27034,7 +29034,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000018", @@ -27061,7 +29063,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000019", @@ -27088,7 +29092,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000020", @@ -27115,7 +29121,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000021", @@ -27142,7 +29150,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000022", @@ -27169,7 +29179,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000023", @@ -27196,7 +29208,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.amount@W06000024", @@ -27223,7 +29237,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001063", @@ -27246,7 +29262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001063" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001064", @@ -27269,7 +29287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001064" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001065", @@ -27292,7 +29312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001065" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001066", @@ -27315,7 +29337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001066" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001067", @@ -27338,7 +29362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001067" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001068", @@ -27361,7 +29387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001068" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001069", @@ -27384,7 +29412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001069" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001070", @@ -27407,7 +29437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001070" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001071", @@ -27430,7 +29462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001071" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001072", @@ -27453,7 +29487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001072" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001073", @@ -27476,7 +29512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001073" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001074", @@ -27499,7 +29537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001074" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001075", @@ -27522,7 +29562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001075" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001076", @@ -27545,7 +29587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001076" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001077", @@ -27568,7 +29612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001077" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001078", @@ -27591,7 +29637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001078" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001079", @@ -27614,7 +29662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001079" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001080", @@ -27637,7 +29687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001080" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001081", @@ -27660,7 +29712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001081" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001082", @@ -27683,7 +29737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001082" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001083", @@ -27706,7 +29762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001083" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001084", @@ -27729,7 +29787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001084" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001085", @@ -27752,7 +29812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001085" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001086", @@ -27775,7 +29837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001086" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001087", @@ -27798,7 +29862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001087" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001088", @@ -27821,7 +29887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001088" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001089", @@ -27844,7 +29912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001089" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001090", @@ -27867,7 +29937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001090" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001091", @@ -27890,7 +29962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001091" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001092", @@ -27913,7 +29987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001092" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001093", @@ -27936,7 +30012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001093" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001094", @@ -27959,7 +30037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001094" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001095", @@ -27982,7 +30062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001095" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001096", @@ -28005,7 +30087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001096" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001097", @@ -28028,7 +30112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001097" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001098", @@ -28051,7 +30137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001098" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001099", @@ -28074,7 +30162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001099" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001100", @@ -28097,7 +30187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001100" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001101", @@ -28120,7 +30212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001101" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001102", @@ -28143,7 +30237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001102" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001103", @@ -28166,7 +30262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001103" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001104", @@ -28189,7 +30287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001104" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001105", @@ -28212,7 +30312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001105" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001106", @@ -28235,7 +30337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001106" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001107", @@ -28258,7 +30362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001107" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001108", @@ -28281,7 +30387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001108" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001109", @@ -28304,7 +30412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001109" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001110", @@ -28327,7 +30437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001110" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001111", @@ -28350,7 +30462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001111" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001112", @@ -28373,7 +30487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001112" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001113", @@ -28396,7 +30512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001113" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001114", @@ -28419,7 +30537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001114" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001115", @@ -28442,7 +30562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001115" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001116", @@ -28465,7 +30587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001116" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001117", @@ -28488,7 +30612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001117" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001118", @@ -28511,7 +30637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001118" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001119", @@ -28534,7 +30662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001119" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001120", @@ -28557,7 +30687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001120" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001121", @@ -28580,7 +30712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001121" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001122", @@ -28603,7 +30737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001122" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001123", @@ -28626,7 +30762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001123" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001124", @@ -28649,7 +30787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001124" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001125", @@ -28672,7 +30812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001125" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001126", @@ -28695,7 +30837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001126" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001127", @@ -28718,7 +30862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001127" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001128", @@ -28741,7 +30887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001128" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001129", @@ -28764,7 +30912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001129" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001130", @@ -28787,7 +30937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001130" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001131", @@ -28810,7 +30962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001131" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001132", @@ -28833,7 +30987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001132" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001133", @@ -28856,7 +31012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001133" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001134", @@ -28879,7 +31037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001134" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001135", @@ -28902,7 +31062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001135" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001136", @@ -28925,7 +31087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001136" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001137", @@ -28948,7 +31112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001137" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001138", @@ -28971,7 +31137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001138" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001139", @@ -28994,7 +31162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001139" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001140", @@ -29017,7 +31187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001140" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001141", @@ -29040,7 +31212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001141" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001142", @@ -29063,7 +31237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001142" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001143", @@ -29086,7 +31262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001143" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001144", @@ -29109,7 +31287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001144" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001145", @@ -29132,7 +31312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001145" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001146", @@ -29155,7 +31337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001146" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001147", @@ -29178,7 +31362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001147" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001148", @@ -29201,7 +31387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001148" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001149", @@ -29224,7 +31412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001149" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001150", @@ -29247,7 +31437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001150" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001151", @@ -29270,7 +31462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001151" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001152", @@ -29293,7 +31487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001152" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001153", @@ -29316,7 +31512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001153" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001154", @@ -29339,7 +31537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001154" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001155", @@ -29362,7 +31562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001155" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001156", @@ -29385,7 +31587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001156" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001157", @@ -29408,7 +31612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001157" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001158", @@ -29431,7 +31637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001158" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001159", @@ -29454,7 +31662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001159" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001160", @@ -29477,7 +31687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001160" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001161", @@ -29500,7 +31712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001161" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001162", @@ -29523,7 +31737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001162" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001163", @@ -29546,7 +31762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001163" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001164", @@ -29569,7 +31787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001164" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001165", @@ -29592,7 +31812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001165" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001166", @@ -29615,7 +31837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001166" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001167", @@ -29638,7 +31862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001167" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001168", @@ -29661,7 +31887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001168" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001169", @@ -29684,7 +31912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001169" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001170", @@ -29707,7 +31937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001170" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001171", @@ -29730,7 +31962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001171" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001172", @@ -29753,7 +31987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001172" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001173", @@ -29776,7 +32012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001173" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001174", @@ -29799,7 +32037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001174" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001175", @@ -29822,7 +32062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001175" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001176", @@ -29845,7 +32087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001176" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001177", @@ -29868,7 +32112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001177" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001178", @@ -29891,7 +32137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001178" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001179", @@ -29914,7 +32162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001179" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001180", @@ -29937,7 +32187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001180" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001181", @@ -29960,7 +32212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001181" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001182", @@ -29983,7 +32237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001182" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001183", @@ -30006,7 +32262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001183" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001184", @@ -30029,7 +32287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001184" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001185", @@ -30052,7 +32312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001185" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001186", @@ -30075,7 +32337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001186" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001187", @@ -30098,7 +32362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001187" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001188", @@ -30121,7 +32387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001188" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001189", @@ -30144,7 +32412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001189" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001190", @@ -30167,7 +32437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001190" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001191", @@ -30190,7 +32462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001191" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001192", @@ -30213,7 +32487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001192" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001193", @@ -30236,7 +32512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001193" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001194", @@ -30259,7 +32537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001194" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001195", @@ -30282,7 +32562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001195" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001196", @@ -30305,7 +32587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001196" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001197", @@ -30328,7 +32612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001197" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001198", @@ -30351,7 +32637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001198" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001199", @@ -30374,7 +32662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001199" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001200", @@ -30397,7 +32687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001200" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001201", @@ -30420,7 +32712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001201" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001202", @@ -30443,7 +32737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001202" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001203", @@ -30466,7 +32762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001203" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001204", @@ -30489,7 +32787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001204" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001205", @@ -30512,7 +32812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001205" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001206", @@ -30535,7 +32837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001206" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001207", @@ -30558,7 +32862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001207" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001208", @@ -30581,7 +32887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001208" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001209", @@ -30604,7 +32912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001209" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001210", @@ -30627,7 +32937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001210" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001211", @@ -30650,7 +32962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001211" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001212", @@ -30673,7 +32987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001212" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001213", @@ -30696,7 +33012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001213" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001214", @@ -30719,7 +33037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001214" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001215", @@ -30742,7 +33062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001215" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001216", @@ -30765,7 +33087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001216" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001217", @@ -30788,7 +33112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001217" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001218", @@ -30811,7 +33137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001218" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001219", @@ -30834,7 +33162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001219" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001220", @@ -30857,7 +33187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001220" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001221", @@ -30880,7 +33212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001221" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001222", @@ -30903,7 +33237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001222" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001223", @@ -30926,7 +33262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001223" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001224", @@ -30949,7 +33287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001224" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001225", @@ -30972,7 +33312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001225" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001226", @@ -30995,7 +33337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001226" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001227", @@ -31018,7 +33362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001227" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001228", @@ -31041,7 +33387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001228" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001229", @@ -31064,7 +33412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001229" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001230", @@ -31087,7 +33437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001230" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001231", @@ -31110,7 +33462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001231" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001232", @@ -31133,7 +33487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001232" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001233", @@ -31156,7 +33512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001233" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001234", @@ -31179,7 +33537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001234" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001235", @@ -31202,7 +33562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001235" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001236", @@ -31225,7 +33587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001236" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001237", @@ -31248,7 +33612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001237" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001238", @@ -31271,7 +33637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001238" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001239", @@ -31294,7 +33662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001239" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001240", @@ -31317,7 +33687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001240" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001241", @@ -31340,7 +33712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001241" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001242", @@ -31363,7 +33737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001242" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001243", @@ -31386,7 +33762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001243" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001244", @@ -31409,7 +33787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001244" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001245", @@ -31432,7 +33812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001245" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001246", @@ -31455,7 +33837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001246" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001247", @@ -31478,7 +33862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001247" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001248", @@ -31501,7 +33887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001248" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001249", @@ -31524,7 +33912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001249" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001250", @@ -31547,7 +33937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001250" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001251", @@ -31570,7 +33962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001251" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001252", @@ -31593,7 +33987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001252" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001253", @@ -31616,7 +34012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001253" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001254", @@ -31639,7 +34037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001254" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001255", @@ -31662,7 +34062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001255" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001256", @@ -31685,7 +34087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001256" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001257", @@ -31708,7 +34112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001257" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001258", @@ -31731,7 +34137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001258" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001259", @@ -31754,7 +34162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001259" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001260", @@ -31777,7 +34187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001260" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001261", @@ -31800,7 +34212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001261" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001262", @@ -31823,7 +34237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001262" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001263", @@ -31846,7 +34262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001263" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001264", @@ -31869,7 +34287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001264" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001265", @@ -31892,7 +34312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001265" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001266", @@ -31915,7 +34337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001266" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001267", @@ -31938,7 +34362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001267" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001268", @@ -31961,7 +34387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001268" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001269", @@ -31984,7 +34412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001269" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001270", @@ -32007,7 +34437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001270" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001271", @@ -32030,7 +34462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001271" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001272", @@ -32053,7 +34487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001272" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001273", @@ -32076,7 +34512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001273" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001274", @@ -32099,7 +34537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001274" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001275", @@ -32122,7 +34562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001275" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001276", @@ -32145,7 +34587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001276" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001277", @@ -32168,7 +34612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001277" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001278", @@ -32191,7 +34637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001278" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001279", @@ -32214,7 +34662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001279" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001280", @@ -32237,7 +34687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001280" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001281", @@ -32260,7 +34712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001281" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001282", @@ -32283,7 +34737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001282" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001283", @@ -32306,7 +34762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001283" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001284", @@ -32329,7 +34787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001284" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001285", @@ -32352,7 +34812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001285" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001286", @@ -32375,7 +34837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001286" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001287", @@ -32398,7 +34862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001287" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001288", @@ -32421,7 +34887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001288" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001289", @@ -32444,7 +34912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001289" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001290", @@ -32467,7 +34937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001290" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001291", @@ -32490,7 +34962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001291" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001292", @@ -32513,7 +34987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001292" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001293", @@ -32536,7 +35012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001293" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001294", @@ -32559,7 +35037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001294" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001295", @@ -32582,7 +35062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001295" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001296", @@ -32605,7 +35087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001296" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001297", @@ -32628,7 +35112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001297" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001298", @@ -32651,7 +35137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001298" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001299", @@ -32674,7 +35162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001299" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001300", @@ -32697,7 +35187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001300" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001301", @@ -32720,7 +35212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001301" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001302", @@ -32743,7 +35237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001302" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001303", @@ -32766,7 +35262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001303" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001304", @@ -32789,7 +35287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001304" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001305", @@ -32812,7 +35312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001305" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001306", @@ -32835,7 +35337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001306" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001307", @@ -32858,7 +35362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001307" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001308", @@ -32881,7 +35387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001308" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001309", @@ -32904,7 +35412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001309" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001310", @@ -32927,7 +35437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001310" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001311", @@ -32950,7 +35462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001311" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001312", @@ -32973,7 +35487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001312" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001313", @@ -32996,7 +35512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001313" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001314", @@ -33019,7 +35537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001314" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001315", @@ -33042,7 +35562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001315" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001316", @@ -33065,7 +35587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001316" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001317", @@ -33088,7 +35612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001317" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001318", @@ -33111,7 +35637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001318" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001319", @@ -33134,7 +35662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001319" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001320", @@ -33157,7 +35687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001320" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001321", @@ -33180,7 +35712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001321" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001322", @@ -33203,7 +35737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001322" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001323", @@ -33226,7 +35762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001323" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001324", @@ -33249,7 +35787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001324" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001325", @@ -33272,7 +35812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001325" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001326", @@ -33295,7 +35837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001326" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001327", @@ -33318,7 +35862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001327" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001328", @@ -33341,7 +35887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001328" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001329", @@ -33364,7 +35912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001329" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001330", @@ -33387,7 +35937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001330" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001331", @@ -33410,7 +35962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001331" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001332", @@ -33433,7 +35987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001332" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001333", @@ -33456,7 +36012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001333" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001334", @@ -33479,7 +36037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001334" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001335", @@ -33502,7 +36062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001335" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001336", @@ -33525,7 +36087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001336" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001337", @@ -33548,7 +36112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001337" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001338", @@ -33571,7 +36137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001338" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001339", @@ -33594,7 +36162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001339" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001340", @@ -33617,7 +36187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001340" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001341", @@ -33640,7 +36212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001341" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001342", @@ -33663,7 +36237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001342" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001343", @@ -33686,7 +36262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001343" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001344", @@ -33709,7 +36287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001344" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001345", @@ -33732,7 +36312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001345" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001346", @@ -33755,7 +36337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001346" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001347", @@ -33778,7 +36362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001347" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001348", @@ -33801,7 +36387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001348" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001349", @@ -33824,7 +36412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001349" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001350", @@ -33847,7 +36437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001350" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001351", @@ -33870,7 +36462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001351" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001352", @@ -33893,7 +36487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001352" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001353", @@ -33916,7 +36512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001353" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001354", @@ -33939,7 +36537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001354" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001355", @@ -33962,7 +36562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001355" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001356", @@ -33985,7 +36587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001356" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001357", @@ -34008,7 +36612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001357" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001358", @@ -34031,7 +36637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001358" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001359", @@ -34054,7 +36662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001359" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001360", @@ -34077,7 +36687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001360" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001361", @@ -34100,7 +36712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001361" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001362", @@ -34123,7 +36737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001362" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001363", @@ -34146,7 +36762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001363" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001364", @@ -34169,7 +36787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001364" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001365", @@ -34192,7 +36812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001365" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001366", @@ -34215,7 +36837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001366" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001367", @@ -34238,7 +36862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001367" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001368", @@ -34261,7 +36887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001368" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001369", @@ -34284,7 +36912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001369" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001370", @@ -34307,7 +36937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001370" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001371", @@ -34330,7 +36962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001371" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001372", @@ -34353,7 +36987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001372" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001373", @@ -34376,7 +37012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001373" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001374", @@ -34399,7 +37037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001374" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001375", @@ -34422,7 +37062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001375" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001376", @@ -34445,7 +37087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001376" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001377", @@ -34468,7 +37112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001377" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001378", @@ -34491,7 +37137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001378" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001379", @@ -34514,7 +37162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001379" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001380", @@ -34537,7 +37187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001380" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001381", @@ -34560,7 +37212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001381" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001382", @@ -34583,7 +37237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001382" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001383", @@ -34606,7 +37262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001383" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001384", @@ -34629,7 +37287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001384" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001385", @@ -34652,7 +37312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001385" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001386", @@ -34675,7 +37337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001386" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001387", @@ -34698,7 +37362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001387" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001388", @@ -34721,7 +37387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001388" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001389", @@ -34744,7 +37412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001389" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001390", @@ -34767,7 +37437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001390" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001391", @@ -34790,7 +37462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001391" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001392", @@ -34813,7 +37487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001392" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001393", @@ -34836,7 +37512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001393" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001394", @@ -34859,7 +37537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001394" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001395", @@ -34882,7 +37562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001395" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001396", @@ -34905,7 +37587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001396" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001397", @@ -34928,7 +37612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001397" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001398", @@ -34951,7 +37637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001398" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001399", @@ -34974,7 +37662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001399" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001400", @@ -34997,7 +37687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001400" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001401", @@ -35020,7 +37712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001401" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001402", @@ -35043,7 +37737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001402" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001403", @@ -35066,7 +37762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001403" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001404", @@ -35089,7 +37787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001404" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001405", @@ -35112,7 +37812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001405" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001406", @@ -35135,7 +37837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001406" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001407", @@ -35158,7 +37862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001407" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001408", @@ -35181,7 +37887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001408" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001409", @@ -35204,7 +37912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001409" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001410", @@ -35227,7 +37937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001410" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001411", @@ -35250,7 +37962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001411" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001412", @@ -35273,7 +37987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001412" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001413", @@ -35296,7 +38012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001413" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001414", @@ -35319,7 +38037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001414" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001415", @@ -35342,7 +38062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001415" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001416", @@ -35365,7 +38087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001416" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001417", @@ -35388,7 +38112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001417" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001418", @@ -35411,7 +38137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001418" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001419", @@ -35434,7 +38162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001419" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001420", @@ -35457,7 +38187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001420" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001421", @@ -35480,7 +38212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001421" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001422", @@ -35503,7 +38237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001422" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001423", @@ -35526,7 +38262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001423" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001424", @@ -35549,7 +38287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001424" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001425", @@ -35572,7 +38312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001425" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001426", @@ -35595,7 +38337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001426" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001427", @@ -35618,7 +38362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001427" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001428", @@ -35641,7 +38387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001428" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001429", @@ -35664,7 +38412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001429" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001430", @@ -35687,7 +38437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001430" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001431", @@ -35710,7 +38462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001431" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001432", @@ -35733,7 +38487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001432" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001433", @@ -35756,7 +38512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001433" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001434", @@ -35779,7 +38537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001434" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001435", @@ -35802,7 +38562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001435" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001436", @@ -35825,7 +38587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001436" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001437", @@ -35848,7 +38612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001437" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001438", @@ -35871,7 +38637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001438" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001439", @@ -35894,7 +38662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001439" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001440", @@ -35917,7 +38687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001440" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001441", @@ -35940,7 +38712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001441" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001442", @@ -35963,7 +38737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001442" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001443", @@ -35986,7 +38762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001443" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001444", @@ -36009,7 +38787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001444" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001445", @@ -36032,7 +38812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001445" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001446", @@ -36055,7 +38837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001446" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001447", @@ -36078,7 +38862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001447" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001448", @@ -36101,7 +38887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001448" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001449", @@ -36124,7 +38912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001449" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001450", @@ -36147,7 +38937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001450" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001451", @@ -36170,7 +38962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001451" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001452", @@ -36193,7 +38987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001452" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001453", @@ -36216,7 +39012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001453" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001454", @@ -36239,7 +39037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001454" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001455", @@ -36262,7 +39062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001455" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001456", @@ -36285,7 +39087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001456" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001457", @@ -36308,7 +39112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001457" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001458", @@ -36331,7 +39137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001458" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001459", @@ -36354,7 +39162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001459" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001460", @@ -36377,7 +39187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001460" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001461", @@ -36400,7 +39212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001461" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001462", @@ -36423,7 +39237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001462" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001463", @@ -36446,7 +39262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001463" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001464", @@ -36469,7 +39287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001464" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001465", @@ -36492,7 +39312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001465" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001466", @@ -36515,7 +39337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001466" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001467", @@ -36538,7 +39362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001467" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001468", @@ -36561,7 +39387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001468" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001469", @@ -36584,7 +39412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001469" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001470", @@ -36607,7 +39437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001470" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001471", @@ -36630,7 +39462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001471" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001472", @@ -36653,7 +39487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001472" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001473", @@ -36676,7 +39512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001473" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001474", @@ -36699,7 +39537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001474" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001475", @@ -36722,7 +39562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001475" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001476", @@ -36745,7 +39587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001476" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001477", @@ -36768,7 +39612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001477" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001478", @@ -36791,7 +39637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001478" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001479", @@ -36814,7 +39662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001479" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001480", @@ -36837,7 +39687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001480" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001481", @@ -36860,7 +39712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001481" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001482", @@ -36883,7 +39737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001482" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001483", @@ -36906,7 +39762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001483" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001484", @@ -36929,7 +39787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001484" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001485", @@ -36952,7 +39812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001485" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001486", @@ -36975,7 +39837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001486" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001487", @@ -36998,7 +39862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001487" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001488", @@ -37021,7 +39887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001488" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001489", @@ -37044,7 +39912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001489" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001490", @@ -37067,7 +39937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001490" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001491", @@ -37090,7 +39962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001491" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001492", @@ -37113,7 +39987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001492" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001493", @@ -37136,7 +40012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001493" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001494", @@ -37159,7 +40037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001494" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001495", @@ -37182,7 +40062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001495" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001496", @@ -37205,7 +40087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001496" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001497", @@ -37228,7 +40112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001497" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001498", @@ -37251,7 +40137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001498" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001499", @@ -37274,7 +40162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001499" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001500", @@ -37297,7 +40187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001500" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001501", @@ -37320,7 +40212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001501" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001502", @@ -37343,7 +40237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001502" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001503", @@ -37366,7 +40262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001503" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001504", @@ -37389,7 +40287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001504" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001505", @@ -37412,7 +40312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001505" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001506", @@ -37435,7 +40337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001506" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001507", @@ -37458,7 +40362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001507" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001508", @@ -37481,7 +40387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001508" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001509", @@ -37504,7 +40412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001509" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001510", @@ -37527,7 +40437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001510" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001511", @@ -37550,7 +40462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001511" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001512", @@ -37573,7 +40487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001512" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001513", @@ -37596,7 +40512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001513" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001514", @@ -37619,7 +40537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001514" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001515", @@ -37642,7 +40562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001515" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001516", @@ -37665,7 +40587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001516" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001517", @@ -37688,7 +40612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001517" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001518", @@ -37711,7 +40637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001518" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001519", @@ -37734,7 +40662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001519" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001520", @@ -37757,7 +40687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001520" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001521", @@ -37780,7 +40712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001521" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001522", @@ -37803,7 +40737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001522" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001523", @@ -37826,7 +40762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001523" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001524", @@ -37849,7 +40787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001524" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001525", @@ -37872,7 +40812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001525" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001526", @@ -37895,7 +40837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001526" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001527", @@ -37918,7 +40862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001527" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001528", @@ -37941,7 +40887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001528" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001529", @@ -37964,7 +40912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001529" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001530", @@ -37987,7 +40937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001530" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001531", @@ -38010,7 +40962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001531" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001532", @@ -38033,7 +40987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001532" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001533", @@ -38056,7 +41012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001533" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001534", @@ -38079,7 +41037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001534" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001535", @@ -38102,7 +41062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001535" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001536", @@ -38125,7 +41087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001536" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001537", @@ -38148,7 +41112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001537" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001538", @@ -38171,7 +41137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001538" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001539", @@ -38194,7 +41162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001539" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001540", @@ -38217,7 +41187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001540" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001541", @@ -38240,7 +41212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001541" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001542", @@ -38263,7 +41237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001542" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001543", @@ -38286,7 +41262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001543" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001544", @@ -38309,7 +41287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001544" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001545", @@ -38332,7 +41312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001545" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001546", @@ -38355,7 +41337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001546" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001547", @@ -38378,7 +41362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001547" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001548", @@ -38401,7 +41387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001548" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001549", @@ -38424,7 +41412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001549" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001550", @@ -38447,7 +41437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001550" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001551", @@ -38470,7 +41462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001551" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001552", @@ -38493,7 +41487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001552" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001553", @@ -38516,7 +41512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001553" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001554", @@ -38539,7 +41537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001554" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001555", @@ -38562,7 +41562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001555" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001556", @@ -38585,7 +41587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001556" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001557", @@ -38608,7 +41612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001557" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001558", @@ -38631,7 +41637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001558" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001559", @@ -38654,7 +41662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001559" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001560", @@ -38677,7 +41687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001560" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001561", @@ -38700,7 +41712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001561" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001562", @@ -38723,7 +41737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001562" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001563", @@ -38746,7 +41762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001563" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001564", @@ -38769,7 +41787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001564" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001565", @@ -38792,7 +41812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001565" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001566", @@ -38815,7 +41837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001566" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001567", @@ -38838,7 +41862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001567" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001568", @@ -38861,7 +41887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001568" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001569", @@ -38884,7 +41912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001569" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001570", @@ -38907,7 +41937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001570" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001571", @@ -38930,7 +41962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001571" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001572", @@ -38953,7 +41987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001572" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001573", @@ -38976,7 +42012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001573" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001574", @@ -38999,7 +42037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001574" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001575", @@ -39022,7 +42062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001575" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001576", @@ -39045,7 +42087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001576" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001577", @@ -39068,7 +42112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001577" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001578", @@ -39091,7 +42137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001578" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001579", @@ -39114,7 +42162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001579" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001580", @@ -39137,7 +42187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001580" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001581", @@ -39160,7 +42212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001581" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001582", @@ -39183,7 +42237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001582" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001583", @@ -39206,7 +42262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001583" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001584", @@ -39229,7 +42287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001584" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001585", @@ -39252,7 +42312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001585" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001586", @@ -39275,7 +42337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001586" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001587", @@ -39298,7 +42362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001587" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001588", @@ -39321,7 +42387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001588" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001589", @@ -39344,7 +42412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001589" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001590", @@ -39367,7 +42437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001590" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001591", @@ -39390,7 +42462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001591" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001592", @@ -39413,7 +42487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001592" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001593", @@ -39436,7 +42512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001593" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001594", @@ -39459,7 +42537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001594" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001595", @@ -39482,7 +42562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001595" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001596", @@ -39505,7 +42587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001596" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001597", @@ -39528,7 +42612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001597" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001598", @@ -39551,7 +42637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001598" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001599", @@ -39574,7 +42662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001599" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001600", @@ -39597,7 +42687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001600" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001601", @@ -39620,7 +42712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001601" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001602", @@ -39643,7 +42737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001602" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001603", @@ -39666,7 +42762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001603" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001604", @@ -39689,7 +42787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001604" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E14001605", @@ -39712,7 +42812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001605" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000001", @@ -39735,7 +42837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000002", @@ -39758,7 +42862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000003", @@ -39781,7 +42887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000004", @@ -39804,7 +42912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000005", @@ -39827,7 +42937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000006", @@ -39850,7 +42962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000007", @@ -39873,7 +42987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000007" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000008", @@ -39896,7 +43012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000009", @@ -39919,7 +43037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000010", @@ -39942,7 +43062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000011", @@ -39965,7 +43087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000012", @@ -39988,7 +43112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000013", @@ -40011,7 +43137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000014", @@ -40034,7 +43162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000015", @@ -40057,7 +43187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000015" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000016", @@ -40080,7 +43212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000016" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000017", @@ -40103,7 +43237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000017" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N05000018", @@ -40126,7 +43262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000021", @@ -40149,7 +43287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000027", @@ -40172,7 +43312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000027" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000045", @@ -40195,7 +43337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000045" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000048", @@ -40218,7 +43362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000048" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000051", @@ -40241,7 +43387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000051" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000060", @@ -40264,7 +43412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000060" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000061", @@ -40287,7 +43437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000061" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000062", @@ -40310,7 +43462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000062" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000063", @@ -40333,7 +43487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000063" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000064", @@ -40356,7 +43512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000064" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000065", @@ -40379,7 +43537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000065" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000066", @@ -40402,7 +43562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000066" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000067", @@ -40425,7 +43587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000067" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000068", @@ -40448,7 +43612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000068" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000069", @@ -40471,7 +43637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000069" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000070", @@ -40494,7 +43662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000070" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000071", @@ -40517,7 +43687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000071" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000072", @@ -40540,7 +43712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000072" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000073", @@ -40563,7 +43737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000073" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000074", @@ -40586,7 +43762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000074" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000075", @@ -40609,7 +43787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000075" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000076", @@ -40632,7 +43812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000076" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000077", @@ -40655,7 +43837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000077" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000078", @@ -40678,7 +43862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000078" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000079", @@ -40701,7 +43887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000079" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000080", @@ -40724,7 +43912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000080" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000081", @@ -40747,7 +43937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000081" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000082", @@ -40770,7 +43962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000082" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000083", @@ -40793,7 +43987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000083" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000084", @@ -40816,7 +44012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000084" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000085", @@ -40839,7 +44037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000085" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000086", @@ -40862,7 +44062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000086" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000087", @@ -40885,7 +44087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000087" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000088", @@ -40908,7 +44112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000088" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000089", @@ -40931,7 +44137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000089" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000090", @@ -40954,7 +44162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000090" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000091", @@ -40977,7 +44187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000091" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000092", @@ -41000,7 +44212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000092" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000093", @@ -41023,7 +44237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000093" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000094", @@ -41046,7 +44262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000094" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000095", @@ -41069,7 +44287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000095" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000096", @@ -41092,7 +44312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000096" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000097", @@ -41115,7 +44337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000097" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000098", @@ -41138,7 +44362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000098" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000099", @@ -41161,7 +44387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000099" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000100", @@ -41184,7 +44412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000100" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000101", @@ -41207,7 +44437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000101" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000102", @@ -41230,7 +44462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000102" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000103", @@ -41253,7 +44487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000103" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000104", @@ -41276,7 +44512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000104" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000105", @@ -41299,7 +44537,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000105" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000106", @@ -41322,7 +44562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000106" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000107", @@ -41345,7 +44587,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000107" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000108", @@ -41368,7 +44612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000108" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000109", @@ -41391,7 +44637,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000109" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000110", @@ -41414,7 +44662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000110" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S14000111", @@ -41437,7 +44687,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000111" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000081", @@ -41460,7 +44712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000081" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000082", @@ -41483,7 +44737,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000082" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000083", @@ -41506,7 +44762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000083" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000084", @@ -41529,7 +44787,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000084" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000085", @@ -41552,7 +44812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000085" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000086", @@ -41575,7 +44837,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000086" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000087", @@ -41598,7 +44862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000087" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000088", @@ -41621,7 +44887,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000088" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000089", @@ -41644,7 +44912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000089" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000090", @@ -41667,7 +44937,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000090" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000091", @@ -41690,7 +44962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000091" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000092", @@ -41713,7 +44987,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000092" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000093", @@ -41736,7 +45012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000093" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000094", @@ -41759,7 +45037,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000094" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000095", @@ -41782,7 +45062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000095" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000096", @@ -41805,7 +45087,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000096" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000097", @@ -41828,7 +45112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000097" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000098", @@ -41851,7 +45137,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000098" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000099", @@ -41874,7 +45162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000099" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000100", @@ -41897,7 +45187,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000100" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000101", @@ -41920,7 +45212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000101" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000102", @@ -41943,7 +45237,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000102" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000103", @@ -41966,7 +45262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000103" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000104", @@ -41989,7 +45287,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000104" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000105", @@ -42012,7 +45312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000105" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000106", @@ -42035,7 +45337,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000106" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000107", @@ -42058,7 +45362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000107" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000108", @@ -42081,7 +45387,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000108" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000109", @@ -42104,7 +45412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000109" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000110", @@ -42127,7 +45437,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000110" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000111", @@ -42150,7 +45462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000111" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W07000112", @@ -42173,7 +45487,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000112" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000001", @@ -42196,7 +45512,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000002", @@ -42219,7 +45537,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000003", @@ -42242,7 +45562,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000004", @@ -42265,7 +45587,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000005", @@ -42288,7 +45612,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000006", @@ -42311,7 +45637,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000007", @@ -42334,7 +45662,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000007" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000008", @@ -42357,7 +45687,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000009", @@ -42380,7 +45712,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000010", @@ -42403,7 +45737,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000011", @@ -42426,7 +45762,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000012", @@ -42449,7 +45787,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000013", @@ -42472,7 +45812,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000014", @@ -42495,7 +45837,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000015", @@ -42518,7 +45862,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000015" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000016", @@ -42541,7 +45887,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000016" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000017", @@ -42564,7 +45912,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000017" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000018", @@ -42587,7 +45937,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000019", @@ -42610,7 +45962,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000019" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000020", @@ -42633,7 +45987,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000020" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000021", @@ -42656,7 +46012,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000022", @@ -42679,7 +46037,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000022" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000023", @@ -42702,7 +46062,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000023" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000024", @@ -42725,7 +46087,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000024" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000025", @@ -42748,7 +46112,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000025" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000026", @@ -42771,7 +46137,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000026" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000030", @@ -42794,7 +46162,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000030" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000031", @@ -42817,7 +46187,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000031" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000032", @@ -42840,7 +46212,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000032" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000033", @@ -42863,7 +46237,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000033" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000034", @@ -42886,7 +46262,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000034" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000035", @@ -42909,7 +46287,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000035" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000036", @@ -42932,7 +46312,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000036" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000037", @@ -42955,7 +46337,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000037" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000038", @@ -42978,7 +46362,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000038" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000039", @@ -43001,7 +46387,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000039" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000040", @@ -43024,7 +46412,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000040" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000041", @@ -43047,7 +46437,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000041" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000042", @@ -43070,7 +46462,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000042" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000043", @@ -43093,7 +46487,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000043" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000044", @@ -43116,7 +46512,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000044" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000045", @@ -43139,7 +46537,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000045" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000046", @@ -43162,7 +46562,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000046" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000047", @@ -43185,7 +46587,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000047" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000049", @@ -43208,7 +46612,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000049" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000050", @@ -43231,7 +46637,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000050" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000051", @@ -43254,7 +46662,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000051" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000052", @@ -43277,7 +46687,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000052" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000054", @@ -43300,7 +46712,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000054" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000055", @@ -43323,7 +46737,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000055" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000056", @@ -43346,7 +46762,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000056" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000057", @@ -43369,7 +46787,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000057" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000058", @@ -43392,7 +46812,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000058" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000059", @@ -43415,7 +46837,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000059" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000060", @@ -43438,7 +46862,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000060" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000061", @@ -43461,7 +46887,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000061" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000062", @@ -43484,7 +46912,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000062" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000063", @@ -43507,7 +46937,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000063" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000064", @@ -43530,7 +46962,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000064" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000065", @@ -43553,7 +46987,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000065" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E06000066", @@ -43576,7 +47012,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000066" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000008", @@ -43599,7 +47037,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000009", @@ -43622,7 +47062,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000010", @@ -43645,7 +47087,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000011", @@ -43668,7 +47112,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000012", @@ -43691,7 +47137,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000032", @@ -43714,7 +47162,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000032" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000033", @@ -43737,7 +47187,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000033" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000034", @@ -43760,7 +47212,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000034" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000035", @@ -43783,7 +47237,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000035" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000036", @@ -43806,7 +47262,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000036" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000037", @@ -43829,7 +47287,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000037" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000038", @@ -43852,7 +47312,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000038" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000039", @@ -43875,7 +47337,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000039" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000040", @@ -43898,7 +47362,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000040" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000041", @@ -43921,7 +47387,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000041" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000042", @@ -43944,7 +47412,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000042" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000043", @@ -43967,7 +47437,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000043" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000044", @@ -43990,7 +47462,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000044" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000045", @@ -44013,7 +47487,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000045" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000046", @@ -44036,7 +47512,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000046" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000047", @@ -44059,7 +47537,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000047" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000061", @@ -44082,7 +47562,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000061" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000062", @@ -44105,7 +47587,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000062" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000063", @@ -44128,7 +47612,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000063" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000064", @@ -44151,7 +47637,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000064" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000065", @@ -44174,7 +47662,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000065" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000066", @@ -44197,7 +47687,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000066" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000067", @@ -44220,7 +47712,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000067" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000068", @@ -44243,7 +47737,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000068" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000069", @@ -44266,7 +47762,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000069" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000070", @@ -44289,7 +47787,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000070" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000071", @@ -44312,7 +47812,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000071" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000072", @@ -44335,7 +47837,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000072" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000073", @@ -44358,7 +47862,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000073" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000074", @@ -44381,7 +47887,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000074" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000075", @@ -44404,7 +47912,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000075" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000076", @@ -44427,7 +47937,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000076" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000077", @@ -44450,7 +47962,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000077" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000078", @@ -44473,7 +47987,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000078" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000079", @@ -44496,7 +48012,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000079" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000080", @@ -44519,7 +48037,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000080" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000081", @@ -44542,7 +48062,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000081" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000082", @@ -44565,7 +48087,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000082" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000083", @@ -44588,7 +48112,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000083" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000084", @@ -44611,7 +48137,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000084" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000085", @@ -44634,7 +48162,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000085" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000086", @@ -44657,7 +48187,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000086" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000087", @@ -44680,7 +48212,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000087" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000088", @@ -44703,7 +48237,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000088" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000089", @@ -44726,7 +48262,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000089" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000090", @@ -44749,7 +48287,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000090" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000091", @@ -44772,7 +48312,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000091" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000092", @@ -44795,7 +48337,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000092" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000093", @@ -44818,7 +48362,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000093" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000094", @@ -44841,7 +48387,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000094" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000095", @@ -44864,7 +48412,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000095" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000096", @@ -44887,7 +48437,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000096" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000098", @@ -44910,7 +48462,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000098" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000099", @@ -44933,7 +48487,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000099" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000102", @@ -44956,7 +48512,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000102" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000103", @@ -44979,7 +48537,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000103" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000105", @@ -45002,7 +48562,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000105" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000106", @@ -45025,7 +48587,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000106" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000107", @@ -45048,7 +48612,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000107" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000108", @@ -45071,7 +48637,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000108" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000109", @@ -45094,7 +48662,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000109" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000110", @@ -45117,7 +48687,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000110" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000111", @@ -45140,7 +48712,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000111" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000112", @@ -45163,7 +48737,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000112" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000113", @@ -45186,7 +48762,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000113" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000114", @@ -45209,7 +48787,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000114" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000115", @@ -45232,7 +48812,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000115" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000116", @@ -45255,7 +48837,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000116" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000117", @@ -45278,7 +48862,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000117" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000118", @@ -45301,7 +48887,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000118" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000119", @@ -45324,7 +48912,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000119" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000120", @@ -45347,7 +48937,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000120" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000121", @@ -45370,7 +48962,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000121" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000122", @@ -45393,7 +48987,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000122" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000123", @@ -45416,7 +49012,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000123" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000124", @@ -45439,7 +49037,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000124" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000125", @@ -45462,7 +49062,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000125" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000126", @@ -45485,7 +49087,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000126" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000127", @@ -45508,7 +49112,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000127" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000128", @@ -45531,7 +49137,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000128" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000129", @@ -45554,7 +49162,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000129" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000130", @@ -45577,7 +49187,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000130" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000131", @@ -45600,7 +49212,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000131" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000132", @@ -45623,7 +49237,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000132" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000133", @@ -45646,7 +49262,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000133" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000134", @@ -45669,7 +49287,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000134" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000135", @@ -45692,7 +49312,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000135" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000136", @@ -45715,7 +49337,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000136" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000137", @@ -45738,7 +49362,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000137" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000138", @@ -45761,7 +49387,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000138" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000139", @@ -45784,7 +49412,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000139" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000140", @@ -45807,7 +49437,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000140" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000141", @@ -45830,7 +49462,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000141" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000142", @@ -45853,7 +49487,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000142" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000143", @@ -45876,7 +49512,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000143" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000144", @@ -45899,7 +49537,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000144" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000145", @@ -45922,7 +49562,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000145" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000146", @@ -45945,7 +49587,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000146" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000147", @@ -45968,7 +49612,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000147" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000148", @@ -45991,7 +49637,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000148" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000149", @@ -46014,7 +49662,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000149" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000170", @@ -46037,7 +49687,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000170" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000171", @@ -46060,7 +49712,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000171" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000172", @@ -46083,7 +49737,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000172" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000173", @@ -46106,7 +49762,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000173" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000174", @@ -46129,7 +49787,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000174" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000175", @@ -46152,7 +49812,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000175" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000176", @@ -46175,7 +49837,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000176" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000177", @@ -46198,7 +49862,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000177" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000178", @@ -46221,7 +49887,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000178" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000179", @@ -46244,7 +49912,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000179" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000180", @@ -46267,7 +49937,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000180" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000181", @@ -46290,7 +49962,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000181" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000192", @@ -46313,7 +49987,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000192" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000193", @@ -46336,7 +50012,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000193" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000194", @@ -46359,7 +50037,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000194" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000195", @@ -46382,7 +50062,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000195" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000196", @@ -46405,7 +50087,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000196" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000197", @@ -46428,7 +50112,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000197" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000198", @@ -46451,7 +50137,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000198" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000199", @@ -46474,7 +50162,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000199" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000200", @@ -46497,7 +50187,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000200" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000202", @@ -46520,7 +50212,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000202" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000203", @@ -46543,7 +50237,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000203" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000207", @@ -46566,7 +50262,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000207" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000208", @@ -46589,7 +50287,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000208" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000209", @@ -46612,7 +50312,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000209" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000210", @@ -46635,7 +50337,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000210" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000211", @@ -46658,7 +50362,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000211" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000212", @@ -46681,7 +50387,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000212" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000213", @@ -46704,7 +50412,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000213" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000214", @@ -46727,7 +50437,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000214" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000215", @@ -46750,7 +50462,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000215" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000216", @@ -46773,7 +50487,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000216" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000217", @@ -46796,7 +50512,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000217" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000218", @@ -46819,7 +50537,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000218" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000219", @@ -46842,7 +50562,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000219" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000220", @@ -46865,7 +50587,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000220" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000221", @@ -46888,7 +50612,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000221" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000222", @@ -46911,7 +50637,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000222" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000223", @@ -46934,7 +50662,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000223" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000224", @@ -46957,7 +50687,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000224" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000225", @@ -46980,7 +50712,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000225" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000226", @@ -47003,7 +50737,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000226" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000227", @@ -47026,7 +50762,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000227" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000228", @@ -47049,7 +50787,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000228" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000229", @@ -47072,7 +50812,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000229" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000234", @@ -47095,7 +50837,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000234" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000235", @@ -47118,7 +50862,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000235" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000236", @@ -47141,7 +50887,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000236" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000237", @@ -47164,7 +50912,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000237" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000238", @@ -47187,7 +50937,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000238" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000239", @@ -47210,7 +50962,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000239" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000240", @@ -47233,7 +50987,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000240" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000241", @@ -47256,7 +51012,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000241" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000242", @@ -47279,7 +51037,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000242" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000243", @@ -47302,7 +51062,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000243" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000244", @@ -47325,7 +51087,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000244" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E07000245", @@ -47348,7 +51112,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000245" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000001", @@ -47371,7 +51137,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000002", @@ -47394,7 +51162,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000003", @@ -47417,7 +51187,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000004", @@ -47440,7 +51212,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000005", @@ -47463,7 +51237,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000006", @@ -47486,7 +51262,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000007", @@ -47509,7 +51287,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000007" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000008", @@ -47532,7 +51312,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000009", @@ -47555,7 +51337,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000010", @@ -47578,7 +51362,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000011", @@ -47601,7 +51387,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000012", @@ -47624,7 +51412,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000013", @@ -47647,7 +51437,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000014", @@ -47670,7 +51462,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000015", @@ -47693,7 +51487,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000015" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000016", @@ -47716,7 +51512,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000016" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000017", @@ -47739,7 +51537,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000017" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000018", @@ -47762,7 +51562,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000019", @@ -47785,7 +51587,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000019" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000021", @@ -47808,7 +51612,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000022", @@ -47831,7 +51637,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000022" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000023", @@ -47854,7 +51662,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000023" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000024", @@ -47877,7 +51687,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000024" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000025", @@ -47900,7 +51712,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000025" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000026", @@ -47923,7 +51737,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000026" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000027", @@ -47946,7 +51762,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000027" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000028", @@ -47969,7 +51787,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000028" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000029", @@ -47992,7 +51812,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000029" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000030", @@ -48015,7 +51837,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000030" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000031", @@ -48038,7 +51862,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000031" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000032", @@ -48061,7 +51887,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000032" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000033", @@ -48084,7 +51912,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000033" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000034", @@ -48107,7 +51937,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000034" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000035", @@ -48130,7 +51962,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000035" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000036", @@ -48153,7 +51987,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000036" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E08000037", @@ -48176,7 +52012,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000037" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000001", @@ -48199,7 +52037,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000002", @@ -48222,7 +52062,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000003", @@ -48245,7 +52087,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000004", @@ -48268,7 +52112,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000005", @@ -48291,7 +52137,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000006", @@ -48314,7 +52162,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000007", @@ -48337,7 +52187,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000007" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000008", @@ -48360,7 +52212,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000009", @@ -48383,7 +52237,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000010", @@ -48406,7 +52262,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000011", @@ -48429,7 +52287,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000012", @@ -48452,7 +52312,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000013", @@ -48475,7 +52337,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000014", @@ -48498,7 +52362,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000015", @@ -48521,7 +52387,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000015" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000016", @@ -48544,7 +52412,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000016" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000017", @@ -48567,7 +52437,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000017" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000018", @@ -48590,7 +52462,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000019", @@ -48613,7 +52487,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000019" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000020", @@ -48636,7 +52512,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000020" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000021", @@ -48659,7 +52537,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000022", @@ -48682,7 +52562,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000022" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000023", @@ -48705,7 +52587,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000023" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000024", @@ -48728,7 +52612,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000024" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000025", @@ -48751,7 +52637,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000025" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000026", @@ -48774,7 +52662,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000026" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000027", @@ -48797,7 +52687,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000027" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000028", @@ -48820,7 +52712,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000028" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000029", @@ -48843,7 +52737,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000029" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000030", @@ -48866,7 +52762,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000030" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000031", @@ -48889,7 +52787,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000031" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000032", @@ -48912,7 +52812,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000032" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@E09000033", @@ -48935,7 +52837,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000033" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000001", @@ -48958,7 +52862,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000002", @@ -48981,7 +52887,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000003", @@ -49004,7 +52912,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000004", @@ -49027,7 +52937,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000005", @@ -49050,7 +52962,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000006", @@ -49073,7 +52987,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000007", @@ -49096,7 +53012,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000007" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000008", @@ -49119,7 +53037,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000009", @@ -49142,7 +53062,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000010", @@ -49165,7 +53087,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@N09000011", @@ -49188,7 +53112,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000005", @@ -49211,7 +53137,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000006", @@ -49234,7 +53162,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000008", @@ -49257,7 +53187,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000010", @@ -49280,7 +53212,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000011", @@ -49303,7 +53237,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000013", @@ -49326,7 +53262,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000014", @@ -49349,7 +53287,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000017", @@ -49372,7 +53312,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000017" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000018", @@ -49395,7 +53337,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000019", @@ -49418,7 +53362,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000019" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000020", @@ -49441,7 +53387,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000020" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000021", @@ -49464,7 +53412,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000023", @@ -49487,7 +53437,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000023" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000026", @@ -49510,7 +53462,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000026" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000027", @@ -49533,7 +53487,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000027" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000028", @@ -49556,7 +53512,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000028" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000029", @@ -49579,7 +53537,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000029" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000030", @@ -49602,7 +53562,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000030" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000033", @@ -49625,7 +53587,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000033" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000034", @@ -49648,7 +53612,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000034" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000035", @@ -49671,7 +53637,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000035" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000036", @@ -49694,7 +53662,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000036" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000038", @@ -49717,7 +53687,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000038" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000039", @@ -49740,7 +53712,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000039" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000040", @@ -49763,7 +53737,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000040" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000041", @@ -49786,7 +53762,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000041" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000042", @@ -49809,7 +53787,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000042" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000045", @@ -49832,7 +53812,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000045" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000047", @@ -49855,7 +53837,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000047" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000048", @@ -49878,7 +53862,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000048" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000049", @@ -49901,7 +53887,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000049" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@S12000050", @@ -49924,7 +53912,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000050" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000001", @@ -49947,7 +53937,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000002", @@ -49970,7 +53962,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000003", @@ -49993,7 +53987,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000004", @@ -50016,7 +54012,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000005", @@ -50039,7 +54037,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000006", @@ -50062,7 +54062,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000008", @@ -50085,7 +54087,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000009", @@ -50108,7 +54112,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000010", @@ -50131,7 +54137,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000011", @@ -50154,7 +54162,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000012", @@ -50177,7 +54187,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000013", @@ -50200,7 +54212,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000014", @@ -50223,7 +54237,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000015", @@ -50246,7 +54262,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000015" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000016", @@ -50269,7 +54287,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000016" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000018", @@ -50292,7 +54312,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000019", @@ -50315,7 +54337,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000019" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000020", @@ -50338,7 +54362,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000020" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000021", @@ -50361,7 +54387,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000022", @@ -50384,7 +54412,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000022" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000023", @@ -50407,7 +54437,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000023" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.self_employment_income.count@W06000024", @@ -50430,7 +54462,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000024" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001063", @@ -50457,7 +54491,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001064", @@ -50484,7 +54520,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001065", @@ -50511,7 +54549,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001066", @@ -50538,7 +54578,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001067", @@ -50565,7 +54607,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001068", @@ -50592,7 +54636,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001069", @@ -50619,7 +54665,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001070", @@ -50646,7 +54694,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001071", @@ -50673,7 +54723,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001072", @@ -50700,7 +54752,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001073", @@ -50727,7 +54781,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001074", @@ -50754,7 +54810,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001075", @@ -50781,7 +54839,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001076", @@ -50808,7 +54868,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001077", @@ -50835,7 +54897,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001078", @@ -50862,7 +54926,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001079", @@ -50889,7 +54955,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001080", @@ -50916,7 +54984,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001081", @@ -50943,7 +55013,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001082", @@ -50970,7 +55042,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001083", @@ -50997,7 +55071,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001084", @@ -51024,7 +55100,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001085", @@ -51051,7 +55129,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001086", @@ -51078,7 +55158,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001087", @@ -51105,7 +55187,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001088", @@ -51132,7 +55216,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001089", @@ -51159,7 +55245,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001090", @@ -51186,7 +55274,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001091", @@ -51213,7 +55303,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001092", @@ -51240,7 +55332,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001093", @@ -51267,7 +55361,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001094", @@ -51294,7 +55390,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001095", @@ -51321,7 +55419,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001096", @@ -51348,7 +55448,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001097", @@ -51375,7 +55477,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001098", @@ -51402,7 +55506,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001099", @@ -51429,7 +55535,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001100", @@ -51456,7 +55564,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001101", @@ -51483,7 +55593,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001102", @@ -51510,7 +55622,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001103", @@ -51537,7 +55651,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001104", @@ -51564,7 +55680,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001105", @@ -51591,7 +55709,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001106", @@ -51618,7 +55738,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001107", @@ -51645,7 +55767,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001108", @@ -51672,7 +55796,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001109", @@ -51699,7 +55825,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001110", @@ -51726,7 +55854,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001111", @@ -51753,7 +55883,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001112", @@ -51780,7 +55912,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001113", @@ -51807,7 +55941,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001114", @@ -51834,7 +55970,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001115", @@ -51861,7 +55999,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001116", @@ -51888,7 +56028,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001117", @@ -51915,7 +56057,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001118", @@ -51942,7 +56086,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001119", @@ -51969,7 +56115,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001120", @@ -51996,7 +56144,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001121", @@ -52023,7 +56173,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001122", @@ -52050,7 +56202,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001123", @@ -52077,7 +56231,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001124", @@ -52104,7 +56260,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001125", @@ -52131,7 +56289,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001126", @@ -52158,7 +56318,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001127", @@ -52185,7 +56347,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001128", @@ -52212,7 +56376,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001129", @@ -52239,7 +56405,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001130", @@ -52266,7 +56434,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001131", @@ -52293,7 +56463,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001132", @@ -52320,7 +56492,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001133", @@ -52347,7 +56521,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001134", @@ -52374,7 +56550,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001135", @@ -52401,7 +56579,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001136", @@ -52428,7 +56608,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001137", @@ -52455,7 +56637,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001138", @@ -52482,7 +56666,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001139", @@ -52509,7 +56695,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001140", @@ -52536,7 +56724,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001141", @@ -52563,7 +56753,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001142", @@ -52590,7 +56782,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001143", @@ -52617,7 +56811,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001144", @@ -52644,7 +56840,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001145", @@ -52671,7 +56869,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001146", @@ -52698,7 +56898,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001147", @@ -52725,7 +56927,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001148", @@ -52752,7 +56956,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001149", @@ -52779,7 +56985,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001150", @@ -52806,7 +57014,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001151", @@ -52833,7 +57043,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001152", @@ -52860,7 +57072,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001153", @@ -52887,7 +57101,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001154", @@ -52914,7 +57130,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001155", @@ -52941,7 +57159,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001156", @@ -52968,7 +57188,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001157", @@ -52995,7 +57217,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001158", @@ -53022,7 +57246,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001159", @@ -53049,7 +57275,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001160", @@ -53076,7 +57304,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001161", @@ -53103,7 +57333,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001162", @@ -53130,7 +57362,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001163", @@ -53157,7 +57391,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001164", @@ -53184,7 +57420,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001165", @@ -53211,7 +57449,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001166", @@ -53238,7 +57478,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001167", @@ -53265,7 +57507,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001168", @@ -53292,7 +57536,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001169", @@ -53319,7 +57565,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001170", @@ -53346,7 +57594,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001171", @@ -53373,7 +57623,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001172", @@ -53400,7 +57652,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001173", @@ -53427,7 +57681,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001174", @@ -53454,7 +57710,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001175", @@ -53481,7 +57739,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001176", @@ -53508,7 +57768,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001177", @@ -53535,7 +57797,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001178", @@ -53562,7 +57826,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001179", @@ -53589,7 +57855,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001180", @@ -53616,7 +57884,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001181", @@ -53643,7 +57913,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001182", @@ -53670,7 +57942,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001183", @@ -53697,7 +57971,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001184", @@ -53724,7 +58000,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001185", @@ -53751,7 +58029,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001186", @@ -53778,7 +58058,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001187", @@ -53805,7 +58087,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001188", @@ -53832,7 +58116,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001189", @@ -53859,7 +58145,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001190", @@ -53886,7 +58174,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001191", @@ -53913,7 +58203,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001192", @@ -53940,7 +58232,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001193", @@ -53967,7 +58261,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001194", @@ -53994,7 +58290,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001195", @@ -54021,7 +58319,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001196", @@ -54048,7 +58348,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001197", @@ -54075,7 +58377,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001198", @@ -54102,7 +58406,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001199", @@ -54129,7 +58435,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001200", @@ -54156,7 +58464,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001201", @@ -54183,7 +58493,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001202", @@ -54210,7 +58522,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001203", @@ -54237,7 +58551,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001204", @@ -54264,7 +58580,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001205", @@ -54291,7 +58609,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001206", @@ -54318,7 +58638,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001207", @@ -54345,7 +58667,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001208", @@ -54372,7 +58696,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001209", @@ -54399,7 +58725,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001210", @@ -54426,7 +58754,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001211", @@ -54453,7 +58783,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001212", @@ -54480,7 +58812,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001213", @@ -54507,7 +58841,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001214", @@ -54534,7 +58870,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001215", @@ -54561,7 +58899,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001216", @@ -54588,7 +58928,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001217", @@ -54615,7 +58957,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001218", @@ -54642,7 +58986,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001219", @@ -54669,7 +59015,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001220", @@ -54696,7 +59044,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001221", @@ -54723,7 +59073,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001222", @@ -54750,7 +59102,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001223", @@ -54777,7 +59131,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001224", @@ -54804,7 +59160,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001225", @@ -54831,7 +59189,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001226", @@ -54858,7 +59218,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001227", @@ -54885,7 +59247,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001228", @@ -54912,7 +59276,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001229", @@ -54939,7 +59305,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001230", @@ -54966,7 +59334,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001231", @@ -54993,7 +59363,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001232", @@ -55020,7 +59392,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001233", @@ -55047,7 +59421,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001234", @@ -55074,7 +59450,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001235", @@ -55101,7 +59479,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001236", @@ -55128,7 +59508,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001237", @@ -55155,7 +59537,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001238", @@ -55182,7 +59566,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001239", @@ -55209,7 +59595,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001240", @@ -55236,7 +59624,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001241", @@ -55263,7 +59653,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001242", @@ -55290,7 +59682,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001243", @@ -55317,7 +59711,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001244", @@ -55344,7 +59740,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001245", @@ -55371,7 +59769,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001246", @@ -55398,7 +59798,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001247", @@ -55425,7 +59827,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001248", @@ -55452,7 +59856,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001249", @@ -55479,7 +59885,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001250", @@ -55506,7 +59914,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001251", @@ -55533,7 +59943,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001252", @@ -55560,7 +59972,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001253", @@ -55587,7 +60001,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001254", @@ -55614,7 +60030,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001255", @@ -55641,7 +60059,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001256", @@ -55668,7 +60088,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001257", @@ -55695,7 +60117,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001258", @@ -55722,7 +60146,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001259", @@ -55749,7 +60175,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001260", @@ -55776,7 +60204,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001261", @@ -55803,7 +60233,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001262", @@ -55830,7 +60262,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001263", @@ -55857,7 +60291,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001264", @@ -55884,7 +60320,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001265", @@ -55911,7 +60349,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001266", @@ -55938,7 +60378,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001267", @@ -55965,7 +60407,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001268", @@ -55992,7 +60436,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001269", @@ -56019,7 +60465,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001270", @@ -56046,7 +60494,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001271", @@ -56073,7 +60523,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001272", @@ -56100,7 +60552,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001273", @@ -56127,7 +60581,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001274", @@ -56154,7 +60610,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001275", @@ -56181,7 +60639,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001276", @@ -56208,7 +60668,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001277", @@ -56235,7 +60697,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001278", @@ -56262,7 +60726,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001279", @@ -56289,7 +60755,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001280", @@ -56316,7 +60784,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001281", @@ -56343,7 +60813,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001282", @@ -56370,7 +60842,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001283", @@ -56397,7 +60871,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001284", @@ -56424,7 +60900,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001285", @@ -56451,7 +60929,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001286", @@ -56478,7 +60958,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001287", @@ -56505,7 +60987,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001288", @@ -56532,7 +61016,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001289", @@ -56559,7 +61045,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001290", @@ -56586,7 +61074,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001291", @@ -56613,7 +61103,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001292", @@ -56640,7 +61132,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001293", @@ -56667,7 +61161,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001294", @@ -56694,7 +61190,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001295", @@ -56721,7 +61219,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001296", @@ -56748,7 +61248,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001297", @@ -56775,7 +61277,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001298", @@ -56802,7 +61306,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001299", @@ -56829,7 +61335,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001300", @@ -56856,7 +61364,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001301", @@ -56883,7 +61393,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001302", @@ -56910,7 +61422,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001303", @@ -56937,7 +61451,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001304", @@ -56964,7 +61480,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001305", @@ -56991,7 +61509,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001306", @@ -57018,7 +61538,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001307", @@ -57045,7 +61567,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001308", @@ -57072,7 +61596,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001309", @@ -57099,7 +61625,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001310", @@ -57126,7 +61654,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001311", @@ -57153,7 +61683,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001312", @@ -57180,7 +61712,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001313", @@ -57207,7 +61741,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001314", @@ -57234,7 +61770,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001315", @@ -57261,7 +61799,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001316", @@ -57288,7 +61828,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001317", @@ -57315,7 +61857,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001318", @@ -57342,7 +61886,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001319", @@ -57369,7 +61915,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001320", @@ -57396,7 +61944,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001321", @@ -57423,7 +61973,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001322", @@ -57450,7 +62002,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001323", @@ -57477,7 +62031,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001324", @@ -57504,7 +62060,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001325", @@ -57531,7 +62089,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001326", @@ -57558,7 +62118,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001327", @@ -57585,7 +62147,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001328", @@ -57612,7 +62176,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001329", @@ -57639,7 +62205,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001330", @@ -57666,7 +62234,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001331", @@ -57693,7 +62263,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001332", @@ -57720,7 +62292,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001333", @@ -57747,7 +62321,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001334", @@ -57774,7 +62350,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001335", @@ -57801,7 +62379,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001336", @@ -57828,7 +62408,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001337", @@ -57855,7 +62437,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001338", @@ -57882,7 +62466,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001339", @@ -57909,7 +62495,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001340", @@ -57936,7 +62524,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001341", @@ -57963,7 +62553,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001342", @@ -57990,7 +62582,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001343", @@ -58017,7 +62611,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001344", @@ -58044,7 +62640,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001345", @@ -58071,7 +62669,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001346", @@ -58098,7 +62698,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001347", @@ -58125,7 +62727,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001348", @@ -58152,7 +62756,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001349", @@ -58179,7 +62785,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001350", @@ -58206,7 +62814,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001351", @@ -58233,7 +62843,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001352", @@ -58260,7 +62872,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001353", @@ -58287,7 +62901,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001354", @@ -58314,7 +62930,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001355", @@ -58341,7 +62959,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001356", @@ -58368,7 +62988,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001357", @@ -58395,7 +63017,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001358", @@ -58422,7 +63046,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001359", @@ -58449,7 +63075,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001360", @@ -58476,7 +63104,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001361", @@ -58503,7 +63133,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001362", @@ -58530,7 +63162,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001363", @@ -58557,7 +63191,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001364", @@ -58584,7 +63220,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001365", @@ -58611,7 +63249,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001366", @@ -58638,7 +63278,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001367", @@ -58665,7 +63307,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001368", @@ -58692,7 +63336,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001369", @@ -58719,7 +63365,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001370", @@ -58746,7 +63394,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001371", @@ -58773,7 +63423,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001372", @@ -58800,7 +63452,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001373", @@ -58827,7 +63481,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001374", @@ -58854,7 +63510,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001375", @@ -58881,7 +63539,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001376", @@ -58908,7 +63568,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001377", @@ -58935,7 +63597,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001378", @@ -58962,7 +63626,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001379", @@ -58989,7 +63655,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001380", @@ -59016,7 +63684,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001381", @@ -59043,7 +63713,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001382", @@ -59070,7 +63742,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001383", @@ -59097,7 +63771,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001384", @@ -59124,7 +63800,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001385", @@ -59151,7 +63829,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001386", @@ -59178,7 +63858,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001387", @@ -59205,7 +63887,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001388", @@ -59232,7 +63916,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001389", @@ -59259,7 +63945,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001390", @@ -59286,7 +63974,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001391", @@ -59313,7 +64003,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001392", @@ -59340,7 +64032,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001393", @@ -59367,7 +64061,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001394", @@ -59394,7 +64090,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001395", @@ -59421,7 +64119,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001396", @@ -59448,7 +64148,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001397", @@ -59475,7 +64177,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001398", @@ -59502,7 +64206,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001399", @@ -59529,7 +64235,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001400", @@ -59556,7 +64264,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001401", @@ -59583,7 +64293,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001402", @@ -59610,7 +64322,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001403", @@ -59637,7 +64351,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001404", @@ -59664,7 +64380,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001405", @@ -59691,7 +64409,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001406", @@ -59718,7 +64438,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001407", @@ -59745,7 +64467,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001408", @@ -59772,7 +64496,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001409", @@ -59799,7 +64525,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001410", @@ -59826,7 +64554,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001411", @@ -59853,7 +64583,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001412", @@ -59880,7 +64612,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001413", @@ -59907,7 +64641,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001414", @@ -59934,7 +64670,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001415", @@ -59961,7 +64699,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001416", @@ -59988,7 +64728,9 @@ "geography_level": "constituency", "geography_id": "E14001416" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001417", @@ -60015,7 +64757,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001418", @@ -60042,7 +64786,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001419", @@ -60069,7 +64815,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001420", @@ -60096,7 +64844,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001421", @@ -60123,7 +64873,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001422", @@ -60150,7 +64902,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001423", @@ -60177,7 +64931,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001424", @@ -60204,7 +64960,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001425", @@ -60231,7 +64989,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001426", @@ -60258,7 +65018,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001427", @@ -60285,7 +65047,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001428", @@ -60312,7 +65076,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001429", @@ -60339,7 +65105,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001430", @@ -60366,7 +65134,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001431", @@ -60393,7 +65163,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001432", @@ -60420,7 +65192,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001433", @@ -60447,7 +65221,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001434", @@ -60474,7 +65250,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001435", @@ -60501,7 +65279,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001436", @@ -60528,7 +65308,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001437", @@ -60555,7 +65337,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001438", @@ -60582,7 +65366,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001439", @@ -60609,7 +65395,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001440", @@ -60636,7 +65424,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001441", @@ -60663,7 +65453,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001442", @@ -60690,7 +65482,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001443", @@ -60717,7 +65511,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001444", @@ -60744,7 +65540,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001445", @@ -60771,7 +65569,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001446", @@ -60798,7 +65598,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001447", @@ -60825,7 +65627,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001448", @@ -60852,7 +65656,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001449", @@ -60879,7 +65685,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001450", @@ -60906,7 +65714,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001451", @@ -60933,7 +65743,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001452", @@ -60960,7 +65772,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001453", @@ -60987,7 +65801,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001454", @@ -61014,7 +65830,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001455", @@ -61041,7 +65859,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001456", @@ -61068,7 +65888,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001457", @@ -61095,7 +65917,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001458", @@ -61122,7 +65946,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001459", @@ -61149,7 +65975,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001460", @@ -61176,7 +66004,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001461", @@ -61203,7 +66033,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001462", @@ -61230,7 +66062,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001463", @@ -61257,7 +66091,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001464", @@ -61284,7 +66120,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001465", @@ -61311,7 +66149,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001466", @@ -61338,7 +66178,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001467", @@ -61365,7 +66207,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001468", @@ -61392,7 +66236,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001469", @@ -61419,7 +66265,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001470", @@ -61446,7 +66294,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001471", @@ -61473,7 +66323,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001472", @@ -61500,7 +66352,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001473", @@ -61527,7 +66381,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001474", @@ -61554,7 +66410,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001475", @@ -61581,7 +66439,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001476", @@ -61608,7 +66468,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001477", @@ -61635,7 +66497,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001478", @@ -61662,7 +66526,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001479", @@ -61689,7 +66555,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001480", @@ -61716,7 +66584,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001481", @@ -61743,7 +66613,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001482", @@ -61770,7 +66642,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001483", @@ -61797,7 +66671,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001484", @@ -61824,7 +66700,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001485", @@ -61851,7 +66729,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001486", @@ -61878,7 +66758,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001487", @@ -61905,7 +66787,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001488", @@ -61932,7 +66816,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001489", @@ -61959,7 +66845,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001490", @@ -61986,7 +66874,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001491", @@ -62013,7 +66903,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001492", @@ -62040,7 +66932,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001493", @@ -62067,7 +66961,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001494", @@ -62094,7 +66990,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001495", @@ -62121,7 +67019,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001496", @@ -62148,7 +67048,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001497", @@ -62175,7 +67077,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001498", @@ -62202,7 +67106,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001499", @@ -62229,7 +67135,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001500", @@ -62256,7 +67164,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001501", @@ -62283,7 +67193,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001502", @@ -62310,7 +67222,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001503", @@ -62337,7 +67251,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001504", @@ -62364,7 +67280,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001505", @@ -62391,7 +67309,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001506", @@ -62418,7 +67338,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001507", @@ -62445,7 +67367,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001508", @@ -62472,7 +67396,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001509", @@ -62499,7 +67425,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001510", @@ -62526,7 +67454,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001511", @@ -62553,7 +67483,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001512", @@ -62580,7 +67512,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001513", @@ -62607,7 +67541,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001514", @@ -62634,7 +67570,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001515", @@ -62661,7 +67599,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001516", @@ -62688,7 +67628,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001517", @@ -62715,7 +67657,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001518", @@ -62742,7 +67686,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001519", @@ -62769,7 +67715,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001520", @@ -62796,7 +67744,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001521", @@ -62823,7 +67773,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001522", @@ -62850,7 +67802,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001523", @@ -62877,7 +67831,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001524", @@ -62904,7 +67860,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001525", @@ -62931,7 +67889,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001526", @@ -62958,7 +67918,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001527", @@ -62985,7 +67947,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001528", @@ -63012,7 +67976,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001529", @@ -63039,7 +68005,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001530", @@ -63066,7 +68034,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001531", @@ -63093,7 +68063,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001532", @@ -63120,7 +68092,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001533", @@ -63147,7 +68121,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001534", @@ -63174,7 +68150,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001535", @@ -63201,7 +68179,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001536", @@ -63228,7 +68208,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001537", @@ -63255,7 +68237,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001538", @@ -63282,7 +68266,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001539", @@ -63309,7 +68295,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001540", @@ -63336,7 +68324,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001541", @@ -63363,7 +68353,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001542", @@ -63390,7 +68382,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001543", @@ -63417,7 +68411,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001544", @@ -63444,7 +68440,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001545", @@ -63471,7 +68469,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001546", @@ -63498,7 +68498,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001547", @@ -63525,7 +68527,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001548", @@ -63552,7 +68556,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001549", @@ -63579,7 +68585,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001550", @@ -63606,7 +68614,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001551", @@ -63633,7 +68643,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001552", @@ -63660,7 +68672,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001553", @@ -63687,7 +68701,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001554", @@ -63714,7 +68730,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001555", @@ -63741,7 +68759,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001556", @@ -63768,7 +68788,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001557", @@ -63795,7 +68817,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001558", @@ -63822,7 +68846,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001559", @@ -63849,7 +68875,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001560", @@ -63876,7 +68904,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001561", @@ -63903,7 +68933,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001562", @@ -63930,7 +68962,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001563", @@ -63957,7 +68991,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001564", @@ -63984,7 +69020,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001565", @@ -64011,7 +69049,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001566", @@ -64038,7 +69078,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001567", @@ -64065,7 +69107,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001568", @@ -64092,7 +69136,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001569", @@ -64119,7 +69165,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001570", @@ -64146,7 +69194,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001571", @@ -64173,7 +69223,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001572", @@ -64200,7 +69252,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001573", @@ -64227,7 +69281,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001574", @@ -64254,7 +69310,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001575", @@ -64281,7 +69339,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001576", @@ -64308,7 +69368,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001577", @@ -64335,7 +69397,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001578", @@ -64362,7 +69426,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001579", @@ -64389,7 +69455,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001580", @@ -64416,7 +69484,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001581", @@ -64443,7 +69513,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001582", @@ -64470,7 +69542,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001583", @@ -64497,7 +69571,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001584", @@ -64524,7 +69600,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001585", @@ -64551,7 +69629,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001586", @@ -64578,7 +69658,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001587", @@ -64605,7 +69687,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001588", @@ -64632,7 +69716,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001589", @@ -64659,7 +69745,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001590", @@ -64686,7 +69774,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001591", @@ -64713,7 +69803,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001592", @@ -64740,7 +69832,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001593", @@ -64767,7 +69861,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001594", @@ -64794,7 +69890,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001595", @@ -64821,7 +69919,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001596", @@ -64848,7 +69948,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001597", @@ -64875,7 +69977,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001598", @@ -64902,7 +70006,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001599", @@ -64929,7 +70035,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001600", @@ -64956,7 +70064,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001601", @@ -64983,7 +70093,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001602", @@ -65010,7 +70122,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001603", @@ -65037,7 +70151,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001604", @@ -65064,7 +70180,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E14001605", @@ -65091,7 +70209,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000001", @@ -65118,7 +70238,9 @@ "geography_level": "constituency", "geography_id": "N05000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000002", @@ -65145,7 +70267,9 @@ "geography_level": "constituency", "geography_id": "N05000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000003", @@ -65172,7 +70296,9 @@ "geography_level": "constituency", "geography_id": "N05000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000004", @@ -65199,7 +70325,9 @@ "geography_level": "constituency", "geography_id": "N05000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000005", @@ -65226,7 +70354,9 @@ "geography_level": "constituency", "geography_id": "N05000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000006", @@ -65253,7 +70383,9 @@ "geography_level": "constituency", "geography_id": "N05000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000007", @@ -65280,7 +70412,9 @@ "geography_level": "constituency", "geography_id": "N05000007" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000008", @@ -65307,7 +70441,9 @@ "geography_level": "constituency", "geography_id": "N05000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000009", @@ -65334,7 +70470,9 @@ "geography_level": "constituency", "geography_id": "N05000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000010", @@ -65361,7 +70499,9 @@ "geography_level": "constituency", "geography_id": "N05000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000011", @@ -65388,7 +70528,9 @@ "geography_level": "constituency", "geography_id": "N05000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000012", @@ -65415,7 +70557,9 @@ "geography_level": "constituency", "geography_id": "N05000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000013", @@ -65442,7 +70586,9 @@ "geography_level": "constituency", "geography_id": "N05000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000014", @@ -65469,7 +70615,9 @@ "geography_level": "constituency", "geography_id": "N05000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000015", @@ -65496,7 +70644,9 @@ "geography_level": "constituency", "geography_id": "N05000015" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000016", @@ -65523,7 +70673,9 @@ "geography_level": "constituency", "geography_id": "N05000016" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000017", @@ -65550,7 +70702,9 @@ "geography_level": "constituency", "geography_id": "N05000017" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N05000018", @@ -65577,7 +70731,9 @@ "geography_level": "constituency", "geography_id": "N05000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000021", @@ -65604,7 +70760,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000027", @@ -65631,7 +70789,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000045", @@ -65658,7 +70818,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000048", @@ -65685,7 +70847,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000051", @@ -65712,7 +70876,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000060", @@ -65739,7 +70905,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000061", @@ -65766,7 +70934,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000062", @@ -65793,7 +70963,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000063", @@ -65820,7 +70992,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000064", @@ -65847,7 +71021,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000065", @@ -65874,7 +71050,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000066", @@ -65901,7 +71079,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000067", @@ -65928,7 +71108,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000068", @@ -65955,7 +71137,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000069", @@ -65982,7 +71166,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000070", @@ -66009,7 +71195,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000071", @@ -66036,7 +71224,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000072", @@ -66063,7 +71253,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000073", @@ -66090,7 +71282,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000074", @@ -66117,7 +71311,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000075", @@ -66144,7 +71340,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000076", @@ -66171,7 +71369,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000077", @@ -66198,7 +71398,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000078", @@ -66225,7 +71427,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000079", @@ -66252,7 +71456,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000080", @@ -66279,7 +71485,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000081", @@ -66306,7 +71514,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000082", @@ -66333,7 +71543,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000083", @@ -66360,7 +71572,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000084", @@ -66387,7 +71601,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000085", @@ -66414,7 +71630,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000086", @@ -66441,7 +71659,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000087", @@ -66468,7 +71688,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000088", @@ -66495,7 +71717,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000089", @@ -66522,7 +71746,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000090", @@ -66549,7 +71775,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000091", @@ -66576,7 +71804,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000092", @@ -66603,7 +71833,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000093", @@ -66630,7 +71862,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000094", @@ -66657,7 +71891,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000095", @@ -66684,7 +71920,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000096", @@ -66711,7 +71949,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000097", @@ -66738,7 +71978,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000098", @@ -66765,7 +72007,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000099", @@ -66792,7 +72036,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000100", @@ -66819,7 +72065,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000101", @@ -66846,7 +72094,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000102", @@ -66873,7 +72123,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000103", @@ -66900,7 +72152,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000104", @@ -66927,7 +72181,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000105", @@ -66954,7 +72210,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000106", @@ -66981,7 +72239,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000107", @@ -67008,7 +72268,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000108", @@ -67035,7 +72297,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000109", @@ -67062,7 +72326,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000110", @@ -67089,7 +72355,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S14000111", @@ -67116,7 +72384,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000081", @@ -67143,7 +72413,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000082", @@ -67170,7 +72442,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000083", @@ -67197,7 +72471,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000084", @@ -67224,7 +72500,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000085", @@ -67251,7 +72529,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000086", @@ -67278,7 +72558,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000087", @@ -67305,7 +72587,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000088", @@ -67332,7 +72616,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000089", @@ -67359,7 +72645,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000090", @@ -67386,7 +72674,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000091", @@ -67413,7 +72703,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000092", @@ -67440,7 +72732,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000093", @@ -67467,7 +72761,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000094", @@ -67494,7 +72790,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000095", @@ -67521,7 +72819,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000096", @@ -67548,7 +72848,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000097", @@ -67575,7 +72877,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000098", @@ -67602,7 +72906,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000099", @@ -67629,7 +72935,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000100", @@ -67656,7 +72964,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000101", @@ -67683,7 +72993,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000102", @@ -67710,7 +73022,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000103", @@ -67737,7 +73051,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000104", @@ -67764,7 +73080,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000105", @@ -67791,7 +73109,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000106", @@ -67818,7 +73138,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000107", @@ -67845,7 +73167,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000108", @@ -67872,7 +73196,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000109", @@ -67899,7 +73225,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000110", @@ -67926,7 +73254,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000111", @@ -67953,7 +73283,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W07000112", @@ -67980,7 +73312,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000001", @@ -68007,7 +73341,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000002", @@ -68034,7 +73370,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000003", @@ -68061,7 +73399,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000004", @@ -68088,7 +73428,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000005", @@ -68115,7 +73457,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000006", @@ -68142,7 +73486,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000007", @@ -68169,7 +73515,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000008", @@ -68196,7 +73544,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000009", @@ -68223,7 +73573,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000010", @@ -68250,7 +73602,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000011", @@ -68277,7 +73631,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000012", @@ -68304,7 +73660,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000013", @@ -68331,7 +73689,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000014", @@ -68358,7 +73718,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000015", @@ -68385,7 +73747,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000016", @@ -68412,7 +73776,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000017", @@ -68439,7 +73805,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000018", @@ -68466,7 +73834,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000019", @@ -68493,7 +73863,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000020", @@ -68520,7 +73892,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000021", @@ -68547,7 +73921,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000022", @@ -68574,7 +73950,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000023", @@ -68601,7 +73979,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000024", @@ -68628,7 +74008,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000025", @@ -68655,7 +74037,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000026", @@ -68682,7 +74066,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000030", @@ -68709,7 +74095,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000031", @@ -68736,7 +74124,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000032", @@ -68763,7 +74153,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000033", @@ -68790,7 +74182,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000034", @@ -68817,7 +74211,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000035", @@ -68844,7 +74240,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000036", @@ -68871,7 +74269,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000037", @@ -68898,7 +74298,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000038", @@ -68925,7 +74327,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000039", @@ -68952,7 +74356,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000040", @@ -68979,7 +74385,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000041", @@ -69006,7 +74414,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000042", @@ -69033,7 +74443,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000043", @@ -69060,7 +74472,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000044", @@ -69087,7 +74501,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000045", @@ -69114,7 +74530,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000046", @@ -69141,7 +74559,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000047", @@ -69168,7 +74588,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000049", @@ -69195,7 +74617,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000050", @@ -69222,7 +74646,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000051", @@ -69249,7 +74675,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000052", @@ -69276,7 +74704,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000054", @@ -69303,7 +74733,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000055", @@ -69330,7 +74762,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000056", @@ -69357,7 +74791,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000057", @@ -69384,7 +74820,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000058", @@ -69411,7 +74849,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000059", @@ -69438,7 +74878,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000060", @@ -69465,7 +74907,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000061", @@ -69492,7 +74936,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000062", @@ -69519,7 +74965,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000063", @@ -69546,7 +74994,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000064", @@ -69573,7 +75023,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000065", @@ -69600,7 +75052,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E06000066", @@ -69627,7 +75081,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000008", @@ -69654,7 +75110,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000009", @@ -69681,7 +75139,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000010", @@ -69708,7 +75168,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000011", @@ -69735,7 +75197,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000012", @@ -69762,7 +75226,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000032", @@ -69789,7 +75255,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000033", @@ -69816,7 +75284,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000034", @@ -69843,7 +75313,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000035", @@ -69870,7 +75342,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000036", @@ -69897,7 +75371,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000037", @@ -69924,7 +75400,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000038", @@ -69951,7 +75429,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000039", @@ -69978,7 +75458,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000040", @@ -70005,7 +75487,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000041", @@ -70032,7 +75516,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000042", @@ -70059,7 +75545,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000043", @@ -70086,7 +75574,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000044", @@ -70113,7 +75603,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000045", @@ -70140,7 +75632,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000046", @@ -70167,7 +75661,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000047", @@ -70194,7 +75690,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000061", @@ -70221,7 +75719,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000062", @@ -70248,7 +75748,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000063", @@ -70275,7 +75777,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000064", @@ -70302,7 +75806,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000065", @@ -70329,7 +75835,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000066", @@ -70356,7 +75864,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000067", @@ -70383,7 +75893,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000068", @@ -70410,7 +75922,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000069", @@ -70437,7 +75951,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000070", @@ -70464,7 +75980,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000071", @@ -70491,7 +76009,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000072", @@ -70518,7 +76038,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000073", @@ -70545,7 +76067,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000074", @@ -70572,7 +76096,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000075", @@ -70599,7 +76125,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000076", @@ -70626,7 +76154,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000077", @@ -70653,7 +76183,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000078", @@ -70680,7 +76212,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000079", @@ -70707,7 +76241,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000080", @@ -70734,7 +76270,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000081", @@ -70761,7 +76299,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000082", @@ -70788,7 +76328,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000083", @@ -70815,7 +76357,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000084", @@ -70842,7 +76386,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000085", @@ -70869,7 +76415,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000086", @@ -70896,7 +76444,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000087", @@ -70923,7 +76473,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000088", @@ -70950,7 +76502,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000089", @@ -70977,7 +76531,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000090", @@ -71004,7 +76560,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000091", @@ -71031,7 +76589,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000092", @@ -71058,7 +76618,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000093", @@ -71085,7 +76647,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000094", @@ -71112,7 +76676,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000095", @@ -71139,7 +76705,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000096", @@ -71166,7 +76734,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000098", @@ -71193,7 +76763,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000099", @@ -71220,7 +76792,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000102", @@ -71247,7 +76821,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000103", @@ -71274,7 +76850,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000105", @@ -71301,7 +76879,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000106", @@ -71328,7 +76908,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000107", @@ -71355,7 +76937,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000108", @@ -71382,7 +76966,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000109", @@ -71409,7 +76995,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000110", @@ -71436,7 +77024,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000111", @@ -71463,7 +77053,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000112", @@ -71490,7 +77082,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000113", @@ -71517,7 +77111,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000114", @@ -71544,7 +77140,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000115", @@ -71571,7 +77169,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000116", @@ -71598,7 +77198,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000117", @@ -71625,7 +77227,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000118", @@ -71652,7 +77256,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000119", @@ -71679,7 +77285,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000120", @@ -71706,7 +77314,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000121", @@ -71733,7 +77343,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000122", @@ -71760,7 +77372,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000123", @@ -71787,7 +77401,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000124", @@ -71814,7 +77430,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000125", @@ -71841,7 +77459,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000126", @@ -71868,7 +77488,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000127", @@ -71895,7 +77517,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000128", @@ -71922,7 +77546,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000129", @@ -71949,7 +77575,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000130", @@ -71976,7 +77604,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000131", @@ -72003,7 +77633,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000132", @@ -72030,7 +77662,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000133", @@ -72057,7 +77691,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000134", @@ -72084,7 +77720,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000135", @@ -72111,7 +77749,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000136", @@ -72138,7 +77778,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000137", @@ -72165,7 +77807,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000138", @@ -72192,7 +77836,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000139", @@ -72219,7 +77865,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000140", @@ -72246,7 +77894,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000141", @@ -72273,7 +77923,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000142", @@ -72300,7 +77952,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000143", @@ -72327,7 +77981,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000144", @@ -72354,7 +78010,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000145", @@ -72381,7 +78039,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000146", @@ -72408,7 +78068,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000147", @@ -72435,7 +78097,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000148", @@ -72462,7 +78126,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000149", @@ -72489,7 +78155,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000170", @@ -72516,7 +78184,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000171", @@ -72543,7 +78213,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000172", @@ -72570,7 +78242,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000173", @@ -72597,7 +78271,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000174", @@ -72624,7 +78300,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000175", @@ -72651,7 +78329,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000176", @@ -72678,7 +78358,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000177", @@ -72705,7 +78387,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000178", @@ -72732,7 +78416,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000179", @@ -72759,7 +78445,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000180", @@ -72786,7 +78474,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000181", @@ -72813,7 +78503,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000192", @@ -72840,7 +78532,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000193", @@ -72867,7 +78561,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000194", @@ -72894,7 +78590,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000195", @@ -72921,7 +78619,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000196", @@ -72948,7 +78648,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000197", @@ -72975,7 +78677,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000198", @@ -73002,7 +78706,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000199", @@ -73029,7 +78735,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000200", @@ -73056,7 +78764,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000202", @@ -73083,7 +78793,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000203", @@ -73110,7 +78822,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000207", @@ -73137,7 +78851,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000208", @@ -73164,7 +78880,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000209", @@ -73191,7 +78909,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000210", @@ -73218,7 +78938,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000211", @@ -73245,7 +78967,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000212", @@ -73272,7 +78996,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000213", @@ -73299,7 +79025,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000214", @@ -73326,7 +79054,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000215", @@ -73353,7 +79083,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000216", @@ -73380,7 +79112,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000217", @@ -73407,7 +79141,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000218", @@ -73434,7 +79170,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000219", @@ -73461,7 +79199,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000220", @@ -73488,7 +79228,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000221", @@ -73515,7 +79257,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000222", @@ -73542,7 +79286,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000223", @@ -73569,7 +79315,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000224", @@ -73596,7 +79344,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000225", @@ -73623,7 +79373,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000226", @@ -73650,7 +79402,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000227", @@ -73677,7 +79431,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000228", @@ -73704,7 +79460,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000229", @@ -73731,7 +79489,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000234", @@ -73758,7 +79518,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000235", @@ -73785,7 +79547,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000236", @@ -73812,7 +79576,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000237", @@ -73839,7 +79605,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000238", @@ -73866,7 +79634,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000239", @@ -73893,7 +79663,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000240", @@ -73920,7 +79692,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000241", @@ -73947,7 +79721,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000242", @@ -73974,7 +79750,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000243", @@ -74001,7 +79779,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000244", @@ -74028,7 +79808,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E07000245", @@ -74055,7 +79837,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000001", @@ -74082,7 +79866,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000002", @@ -74109,7 +79895,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000003", @@ -74136,7 +79924,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000004", @@ -74163,7 +79953,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000005", @@ -74190,7 +79982,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000006", @@ -74217,7 +80011,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000007", @@ -74244,7 +80040,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000008", @@ -74271,7 +80069,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000009", @@ -74298,7 +80098,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000010", @@ -74325,7 +80127,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000011", @@ -74352,7 +80156,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000012", @@ -74379,7 +80185,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000013", @@ -74406,7 +80214,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000014", @@ -74433,7 +80243,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000015", @@ -74460,7 +80272,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000016", @@ -74487,7 +80301,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000017", @@ -74514,7 +80330,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000018", @@ -74541,7 +80359,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000019", @@ -74568,7 +80388,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000021", @@ -74595,7 +80417,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000022", @@ -74622,7 +80446,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000023", @@ -74649,7 +80475,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000024", @@ -74676,7 +80504,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000025", @@ -74703,7 +80533,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000026", @@ -74730,7 +80562,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000027", @@ -74757,7 +80591,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000028", @@ -74784,7 +80620,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000029", @@ -74811,7 +80649,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000030", @@ -74838,7 +80678,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000031", @@ -74865,7 +80707,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000032", @@ -74892,7 +80736,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000033", @@ -74919,7 +80765,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000034", @@ -74946,7 +80794,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000035", @@ -74973,7 +80823,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000036", @@ -75000,7 +80852,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E08000037", @@ -75027,7 +80881,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000001", @@ -75054,7 +80910,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000002", @@ -75081,7 +80939,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000003", @@ -75108,7 +80968,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000004", @@ -75135,7 +80997,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000005", @@ -75162,7 +81026,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000006", @@ -75189,7 +81055,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000007", @@ -75216,7 +81084,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000008", @@ -75243,7 +81113,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000009", @@ -75270,7 +81142,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000010", @@ -75297,7 +81171,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000011", @@ -75324,7 +81200,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000012", @@ -75351,7 +81229,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000013", @@ -75378,7 +81258,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000014", @@ -75405,7 +81287,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000015", @@ -75432,7 +81316,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000016", @@ -75459,7 +81345,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000017", @@ -75486,7 +81374,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000018", @@ -75513,7 +81403,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000019", @@ -75540,7 +81432,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000020", @@ -75567,7 +81461,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000021", @@ -75594,7 +81490,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000022", @@ -75621,7 +81519,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000023", @@ -75648,7 +81548,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000024", @@ -75675,7 +81577,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000025", @@ -75702,7 +81606,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000026", @@ -75729,7 +81635,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000027", @@ -75756,7 +81664,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000028", @@ -75783,7 +81693,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000029", @@ -75810,7 +81722,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000030", @@ -75837,7 +81751,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000031", @@ -75864,7 +81780,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000032", @@ -75891,7 +81809,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@E09000033", @@ -75918,7 +81838,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000001", @@ -75945,7 +81867,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000002", @@ -75972,7 +81896,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000003", @@ -75999,7 +81925,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000004", @@ -76026,7 +81954,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000005", @@ -76053,7 +81983,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000006", @@ -76080,7 +82012,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000007", @@ -76107,7 +82041,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000008", @@ -76134,7 +82070,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000009", @@ -76161,7 +82099,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000010", @@ -76188,7 +82128,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@N09000011", @@ -76215,7 +82157,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000005", @@ -76242,7 +82186,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000006", @@ -76269,7 +82215,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000008", @@ -76296,7 +82244,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000010", @@ -76323,7 +82273,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000011", @@ -76350,7 +82302,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000013", @@ -76377,7 +82331,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000014", @@ -76404,7 +82360,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000017", @@ -76431,7 +82389,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000018", @@ -76458,7 +82418,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000019", @@ -76485,7 +82447,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000020", @@ -76512,7 +82476,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000021", @@ -76539,7 +82505,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000023", @@ -76566,7 +82534,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000026", @@ -76593,7 +82563,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000027", @@ -76620,7 +82592,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000028", @@ -76647,7 +82621,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000029", @@ -76674,7 +82650,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000030", @@ -76701,7 +82679,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000033", @@ -76728,7 +82708,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000034", @@ -76755,7 +82737,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000035", @@ -76782,7 +82766,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000036", @@ -76809,7 +82795,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000038", @@ -76836,7 +82824,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000039", @@ -76863,7 +82853,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000040", @@ -76890,7 +82882,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000041", @@ -76917,7 +82911,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000042", @@ -76944,7 +82940,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000045", @@ -76971,7 +82969,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000047", @@ -76998,7 +82998,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000048", @@ -77025,7 +83027,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000049", @@ -77052,7 +83056,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@S12000050", @@ -77079,7 +83085,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000001", @@ -77106,7 +83114,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000002", @@ -77133,7 +83143,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000003", @@ -77160,7 +83172,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000004", @@ -77187,7 +83201,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000005", @@ -77214,7 +83230,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000006", @@ -77241,7 +83259,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000008", @@ -77268,7 +83288,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000009", @@ -77295,7 +83317,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000010", @@ -77322,7 +83346,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000011", @@ -77349,7 +83375,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000012", @@ -77376,7 +83404,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000013", @@ -77403,7 +83433,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000014", @@ -77430,7 +83462,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000015", @@ -77457,7 +83491,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000016", @@ -77484,7 +83520,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000018", @@ -77511,7 +83549,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000019", @@ -77538,7 +83578,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000020", @@ -77565,7 +83607,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000021", @@ -77592,7 +83636,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000022", @@ -77619,7 +83665,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000023", @@ -77646,7 +83694,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.amount@W06000024", @@ -77673,7 +83723,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "count_x_mean" + "value_operation": "count_x_mean", + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001063", @@ -77696,7 +83748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001063" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001064", @@ -77719,7 +83773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001064" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001065", @@ -77742,7 +83798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001065" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001066", @@ -77765,7 +83823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001066" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001067", @@ -77788,7 +83848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001067" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001068", @@ -77811,7 +83873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001068" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001069", @@ -77834,7 +83898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001069" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001070", @@ -77857,7 +83923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001070" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001071", @@ -77880,7 +83948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001071" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001072", @@ -77903,7 +83973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001072" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001073", @@ -77926,7 +83998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001073" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001074", @@ -77949,7 +84023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001074" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001075", @@ -77972,7 +84048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001075" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001076", @@ -77995,7 +84073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001076" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001077", @@ -78018,7 +84098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001077" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001078", @@ -78041,7 +84123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001078" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001079", @@ -78064,7 +84148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001079" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001080", @@ -78087,7 +84173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001080" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001081", @@ -78110,7 +84198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001081" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001082", @@ -78133,7 +84223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001082" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001083", @@ -78156,7 +84248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001083" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001084", @@ -78179,7 +84273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001084" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001085", @@ -78202,7 +84298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001085" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001086", @@ -78225,7 +84323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001086" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001087", @@ -78248,7 +84348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001087" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001088", @@ -78271,7 +84373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001088" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001089", @@ -78294,7 +84398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001089" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001090", @@ -78317,7 +84423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001090" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001091", @@ -78340,7 +84448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001091" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001092", @@ -78363,7 +84473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001092" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001093", @@ -78386,7 +84498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001093" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001094", @@ -78409,7 +84523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001094" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001095", @@ -78432,7 +84548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001095" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001096", @@ -78455,7 +84573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001096" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001097", @@ -78478,7 +84598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001097" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001098", @@ -78501,7 +84623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001098" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001099", @@ -78524,7 +84648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001099" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001100", @@ -78547,7 +84673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001100" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001101", @@ -78570,7 +84698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001101" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001102", @@ -78593,7 +84723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001102" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001103", @@ -78616,7 +84748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001103" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001104", @@ -78639,7 +84773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001104" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001105", @@ -78662,7 +84798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001105" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001106", @@ -78685,7 +84823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001106" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001107", @@ -78708,7 +84848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001107" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001108", @@ -78731,7 +84873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001108" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001109", @@ -78754,7 +84898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001109" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001110", @@ -78777,7 +84923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001110" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001111", @@ -78800,7 +84948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001111" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001112", @@ -78823,7 +84973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001112" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001113", @@ -78846,7 +84998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001113" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001114", @@ -78869,7 +85023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001114" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001115", @@ -78892,7 +85048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001115" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001116", @@ -78915,7 +85073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001116" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001117", @@ -78938,7 +85098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001117" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001118", @@ -78961,7 +85123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001118" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001119", @@ -78984,7 +85148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001119" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001120", @@ -79007,7 +85173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001120" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001121", @@ -79030,7 +85198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001121" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001122", @@ -79053,7 +85223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001122" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001123", @@ -79076,7 +85248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001123" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001124", @@ -79099,7 +85273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001124" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001125", @@ -79122,7 +85298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001125" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001126", @@ -79145,7 +85323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001126" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001127", @@ -79168,7 +85348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001127" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001128", @@ -79191,7 +85373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001128" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001129", @@ -79214,7 +85398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001129" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001130", @@ -79237,7 +85423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001130" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001131", @@ -79260,7 +85448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001131" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001132", @@ -79283,7 +85473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001132" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001133", @@ -79306,7 +85498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001133" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001134", @@ -79329,7 +85523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001134" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001135", @@ -79352,7 +85548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001135" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001136", @@ -79375,7 +85573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001136" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001137", @@ -79398,7 +85598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001137" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001138", @@ -79421,7 +85623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001138" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001139", @@ -79444,7 +85648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001139" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001140", @@ -79467,7 +85673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001140" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001141", @@ -79490,7 +85698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001141" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001142", @@ -79513,7 +85723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001142" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001143", @@ -79536,7 +85748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001143" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001144", @@ -79559,7 +85773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001144" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001145", @@ -79582,7 +85798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001145" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001146", @@ -79605,7 +85823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001146" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001147", @@ -79628,7 +85848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001147" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001148", @@ -79651,7 +85873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001148" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001149", @@ -79674,7 +85898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001149" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001150", @@ -79697,7 +85923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001150" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001151", @@ -79720,7 +85948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001151" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001152", @@ -79743,7 +85973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001152" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001153", @@ -79766,7 +85998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001153" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001154", @@ -79789,7 +86023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001154" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001155", @@ -79812,7 +86048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001155" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001156", @@ -79835,7 +86073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001156" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001157", @@ -79858,7 +86098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001157" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001158", @@ -79881,7 +86123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001158" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001159", @@ -79904,7 +86148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001159" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001160", @@ -79927,7 +86173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001160" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001161", @@ -79950,7 +86198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001161" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001162", @@ -79973,7 +86223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001162" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001163", @@ -79996,7 +86248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001163" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001164", @@ -80019,7 +86273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001164" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001165", @@ -80042,7 +86298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001165" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001166", @@ -80065,7 +86323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001166" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001167", @@ -80088,7 +86348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001167" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001168", @@ -80111,7 +86373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001168" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001169", @@ -80134,7 +86398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001169" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001170", @@ -80157,7 +86423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001170" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001171", @@ -80180,7 +86448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001171" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001172", @@ -80203,7 +86473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001172" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001173", @@ -80226,7 +86498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001173" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001174", @@ -80249,7 +86523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001174" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001175", @@ -80272,7 +86548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001175" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001176", @@ -80295,7 +86573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001176" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001177", @@ -80318,7 +86598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001177" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001178", @@ -80341,7 +86623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001178" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001179", @@ -80364,7 +86648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001179" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001180", @@ -80387,7 +86673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001180" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001181", @@ -80410,7 +86698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001181" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001182", @@ -80433,7 +86723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001182" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001183", @@ -80456,7 +86748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001183" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001184", @@ -80479,7 +86773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001184" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001185", @@ -80502,7 +86798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001185" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001186", @@ -80525,7 +86823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001186" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001187", @@ -80548,7 +86848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001187" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001188", @@ -80571,7 +86873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001188" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001189", @@ -80594,7 +86898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001189" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001190", @@ -80617,7 +86923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001190" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001191", @@ -80640,7 +86948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001191" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001192", @@ -80663,7 +86973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001192" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001193", @@ -80686,7 +86998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001193" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001194", @@ -80709,7 +87023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001194" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001195", @@ -80732,7 +87048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001195" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001196", @@ -80755,7 +87073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001196" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001197", @@ -80778,7 +87098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001197" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001198", @@ -80801,7 +87123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001198" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001199", @@ -80824,7 +87148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001199" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001200", @@ -80847,7 +87173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001200" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001201", @@ -80870,7 +87198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001201" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001202", @@ -80893,7 +87223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001202" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001203", @@ -80916,7 +87248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001203" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001204", @@ -80939,7 +87273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001204" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001205", @@ -80962,7 +87298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001205" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001206", @@ -80985,7 +87323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001206" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001207", @@ -81008,7 +87348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001207" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001208", @@ -81031,7 +87373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001208" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001209", @@ -81054,7 +87398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001209" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001210", @@ -81077,7 +87423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001210" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001211", @@ -81100,7 +87448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001211" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001212", @@ -81123,7 +87473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001212" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001213", @@ -81146,7 +87498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001213" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001214", @@ -81169,7 +87523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001214" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001215", @@ -81192,7 +87548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001215" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001216", @@ -81215,7 +87573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001216" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001217", @@ -81238,7 +87598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001217" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001218", @@ -81261,7 +87623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001218" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001219", @@ -81284,7 +87648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001219" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001220", @@ -81307,7 +87673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001220" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001221", @@ -81330,7 +87698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001221" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001222", @@ -81353,7 +87723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001222" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001223", @@ -81376,7 +87748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001223" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001224", @@ -81399,7 +87773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001224" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001225", @@ -81422,7 +87798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001225" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001226", @@ -81445,7 +87823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001226" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001227", @@ -81468,7 +87848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001227" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001228", @@ -81491,7 +87873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001228" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001229", @@ -81514,7 +87898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001229" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001230", @@ -81537,7 +87923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001230" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001231", @@ -81560,7 +87948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001231" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001232", @@ -81583,7 +87973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001232" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001233", @@ -81606,7 +87998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001233" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001234", @@ -81629,7 +88023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001234" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001235", @@ -81652,7 +88048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001235" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001236", @@ -81675,7 +88073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001236" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001237", @@ -81698,7 +88098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001237" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001238", @@ -81721,7 +88123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001238" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001239", @@ -81744,7 +88148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001239" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001240", @@ -81767,7 +88173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001240" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001241", @@ -81790,7 +88198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001241" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001242", @@ -81813,7 +88223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001242" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001243", @@ -81836,7 +88248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001243" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001244", @@ -81859,7 +88273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001244" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001245", @@ -81882,7 +88298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001245" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001246", @@ -81905,7 +88323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001246" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001247", @@ -81928,7 +88348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001247" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001248", @@ -81951,7 +88373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001248" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001249", @@ -81974,7 +88398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001249" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001250", @@ -81997,7 +88423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001250" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001251", @@ -82020,7 +88448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001251" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001252", @@ -82043,7 +88473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001252" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001253", @@ -82066,7 +88498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001253" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001254", @@ -82089,7 +88523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001254" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001255", @@ -82112,7 +88548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001255" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001256", @@ -82135,7 +88573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001256" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001257", @@ -82158,7 +88598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001257" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001258", @@ -82181,7 +88623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001258" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001259", @@ -82204,7 +88648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001259" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001260", @@ -82227,7 +88673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001260" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001261", @@ -82250,7 +88698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001261" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001262", @@ -82273,7 +88723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001262" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001263", @@ -82296,7 +88748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001263" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001264", @@ -82319,7 +88773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001264" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001265", @@ -82342,7 +88798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001265" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001266", @@ -82365,7 +88823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001266" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001267", @@ -82388,7 +88848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001267" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001268", @@ -82411,7 +88873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001268" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001269", @@ -82434,7 +88898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001269" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001270", @@ -82457,7 +88923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001270" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001271", @@ -82480,7 +88948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001271" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001272", @@ -82503,7 +88973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001272" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001273", @@ -82526,7 +88998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001273" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001274", @@ -82549,7 +89023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001274" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001275", @@ -82572,7 +89048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001275" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001276", @@ -82595,7 +89073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001276" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001277", @@ -82618,7 +89098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001277" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001278", @@ -82641,7 +89123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001278" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001279", @@ -82664,7 +89148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001279" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001280", @@ -82687,7 +89173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001280" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001281", @@ -82710,7 +89198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001281" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001282", @@ -82733,7 +89223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001282" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001283", @@ -82756,7 +89248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001283" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001284", @@ -82779,7 +89273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001284" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001285", @@ -82802,7 +89298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001285" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001286", @@ -82825,7 +89323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001286" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001287", @@ -82848,7 +89348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001287" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001288", @@ -82871,7 +89373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001288" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001289", @@ -82894,7 +89398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001289" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001290", @@ -82917,7 +89423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001290" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001291", @@ -82940,7 +89448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001291" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001292", @@ -82963,7 +89473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001292" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001293", @@ -82986,7 +89498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001293" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001294", @@ -83009,7 +89523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001294" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001295", @@ -83032,7 +89548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001295" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001296", @@ -83055,7 +89573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001296" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001297", @@ -83078,7 +89598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001297" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001298", @@ -83101,7 +89623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001298" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001299", @@ -83124,7 +89648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001299" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001300", @@ -83147,7 +89673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001300" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001301", @@ -83170,7 +89698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001301" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001302", @@ -83193,7 +89723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001302" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001303", @@ -83216,7 +89748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001303" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001304", @@ -83239,7 +89773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001304" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001305", @@ -83262,7 +89798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001305" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001306", @@ -83285,7 +89823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001306" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001307", @@ -83308,7 +89848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001307" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001308", @@ -83331,7 +89873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001308" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001309", @@ -83354,7 +89898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001309" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001310", @@ -83377,7 +89923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001310" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001311", @@ -83400,7 +89948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001311" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001312", @@ -83423,7 +89973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001312" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001313", @@ -83446,7 +89998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001313" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001314", @@ -83469,7 +90023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001314" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001315", @@ -83492,7 +90048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001315" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001316", @@ -83515,7 +90073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001316" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001317", @@ -83538,7 +90098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001317" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001318", @@ -83561,7 +90123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001318" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001319", @@ -83584,7 +90148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001319" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001320", @@ -83607,7 +90173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001320" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001321", @@ -83630,7 +90198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001321" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001322", @@ -83653,7 +90223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001322" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001323", @@ -83676,7 +90248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001323" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001324", @@ -83699,7 +90273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001324" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001325", @@ -83722,7 +90298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001325" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001326", @@ -83745,7 +90323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001326" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001327", @@ -83768,7 +90348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001327" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001328", @@ -83791,7 +90373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001328" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001329", @@ -83814,7 +90398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001329" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001330", @@ -83837,7 +90423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001330" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001331", @@ -83860,7 +90448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001331" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001332", @@ -83883,7 +90473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001332" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001333", @@ -83906,7 +90498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001333" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001334", @@ -83929,7 +90523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001334" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001335", @@ -83952,7 +90548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001335" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001336", @@ -83975,7 +90573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001336" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001337", @@ -83998,7 +90598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001337" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001338", @@ -84021,7 +90623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001338" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001339", @@ -84044,7 +90648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001339" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001340", @@ -84067,7 +90673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001340" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001341", @@ -84090,7 +90698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001341" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001342", @@ -84113,7 +90723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001342" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001343", @@ -84136,7 +90748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001343" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001344", @@ -84159,7 +90773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001344" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001345", @@ -84182,7 +90798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001345" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001346", @@ -84205,7 +90823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001346" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001347", @@ -84228,7 +90848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001347" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001348", @@ -84251,7 +90873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001348" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001349", @@ -84274,7 +90898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001349" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001350", @@ -84297,7 +90923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001350" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001351", @@ -84320,7 +90948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001351" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001352", @@ -84343,7 +90973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001352" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001353", @@ -84366,7 +90998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001353" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001354", @@ -84389,7 +91023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001354" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001355", @@ -84412,7 +91048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001355" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001356", @@ -84435,7 +91073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001356" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001357", @@ -84458,7 +91098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001357" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001358", @@ -84481,7 +91123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001358" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001359", @@ -84504,7 +91148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001359" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001360", @@ -84527,7 +91173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001360" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001361", @@ -84550,7 +91198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001361" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001362", @@ -84573,7 +91223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001362" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001363", @@ -84596,7 +91248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001363" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001364", @@ -84619,7 +91273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001364" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001365", @@ -84642,7 +91298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001365" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001366", @@ -84665,7 +91323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001366" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001367", @@ -84688,7 +91348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001367" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001368", @@ -84711,7 +91373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001368" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001369", @@ -84734,7 +91398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001369" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001370", @@ -84757,7 +91423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001370" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001371", @@ -84780,7 +91448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001371" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001372", @@ -84803,7 +91473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001372" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001373", @@ -84826,7 +91498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001373" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001374", @@ -84849,7 +91523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001374" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001375", @@ -84872,7 +91548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001375" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001376", @@ -84895,7 +91573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001376" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001377", @@ -84918,7 +91598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001377" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001378", @@ -84941,7 +91623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001378" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001379", @@ -84964,7 +91648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001379" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001380", @@ -84987,7 +91673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001380" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001381", @@ -85010,7 +91698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001381" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001382", @@ -85033,7 +91723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001382" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001383", @@ -85056,7 +91748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001383" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001384", @@ -85079,7 +91773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001384" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001385", @@ -85102,7 +91798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001385" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001386", @@ -85125,7 +91823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001386" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001387", @@ -85148,7 +91848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001387" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001388", @@ -85171,7 +91873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001388" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001389", @@ -85194,7 +91898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001389" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001390", @@ -85217,7 +91923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001390" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001391", @@ -85240,7 +91948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001391" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001392", @@ -85263,7 +91973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001392" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001393", @@ -85286,7 +91998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001393" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001394", @@ -85309,7 +92023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001394" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001395", @@ -85332,7 +92048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001395" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001396", @@ -85355,7 +92073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001396" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001397", @@ -85378,7 +92098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001397" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001398", @@ -85401,7 +92123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001398" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001399", @@ -85424,7 +92148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001399" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001400", @@ -85447,7 +92173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001400" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001401", @@ -85470,7 +92198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001401" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001402", @@ -85493,7 +92223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001402" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001403", @@ -85516,7 +92248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001403" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001404", @@ -85539,7 +92273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001404" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001405", @@ -85562,7 +92298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001405" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001406", @@ -85585,7 +92323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001406" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001407", @@ -85608,7 +92348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001407" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001408", @@ -85631,7 +92373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001408" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001409", @@ -85654,7 +92398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001409" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001410", @@ -85677,7 +92423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001410" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001411", @@ -85700,7 +92448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001411" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001412", @@ -85723,7 +92473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001412" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001413", @@ -85746,7 +92498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001413" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001414", @@ -85769,7 +92523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001414" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001415", @@ -85792,7 +92548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001415" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001416", @@ -85815,7 +92573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001416" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001417", @@ -85838,7 +92598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001417" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001418", @@ -85861,7 +92623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001418" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001419", @@ -85884,7 +92648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001419" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001420", @@ -85907,7 +92673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001420" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001421", @@ -85930,7 +92698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001421" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001422", @@ -85953,7 +92723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001422" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001423", @@ -85976,7 +92748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001423" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001424", @@ -85999,7 +92773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001424" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001425", @@ -86022,7 +92798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001425" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001426", @@ -86045,7 +92823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001426" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001427", @@ -86068,7 +92848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001427" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001428", @@ -86091,7 +92873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001428" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001429", @@ -86114,7 +92898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001429" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001430", @@ -86137,7 +92923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001430" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001431", @@ -86160,7 +92948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001431" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001432", @@ -86183,7 +92973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001432" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001433", @@ -86206,7 +92998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001433" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001434", @@ -86229,7 +93023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001434" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001435", @@ -86252,7 +93048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001435" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001436", @@ -86275,7 +93073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001436" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001437", @@ -86298,7 +93098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001437" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001438", @@ -86321,7 +93123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001438" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001439", @@ -86344,7 +93148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001439" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001440", @@ -86367,7 +93173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001440" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001441", @@ -86390,7 +93198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001441" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001442", @@ -86413,7 +93223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001442" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001443", @@ -86436,7 +93248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001443" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001444", @@ -86459,7 +93273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001444" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001445", @@ -86482,7 +93298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001445" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001446", @@ -86505,7 +93323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001446" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001447", @@ -86528,7 +93348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001447" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001448", @@ -86551,7 +93373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001448" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001449", @@ -86574,7 +93398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001449" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001450", @@ -86597,7 +93423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001450" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001451", @@ -86620,7 +93448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001451" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001452", @@ -86643,7 +93473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001452" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001453", @@ -86666,7 +93498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001453" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001454", @@ -86689,7 +93523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001454" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001455", @@ -86712,7 +93548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001455" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001456", @@ -86735,7 +93573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001456" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001457", @@ -86758,7 +93598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001457" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001458", @@ -86781,7 +93623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001458" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001459", @@ -86804,7 +93648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001459" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001460", @@ -86827,7 +93673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001460" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001461", @@ -86850,7 +93698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001461" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001462", @@ -86873,7 +93723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001462" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001463", @@ -86896,7 +93748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001463" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001464", @@ -86919,7 +93773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001464" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001465", @@ -86942,7 +93798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001465" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001466", @@ -86965,7 +93823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001466" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001467", @@ -86988,7 +93848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001467" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001468", @@ -87011,7 +93873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001468" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001469", @@ -87034,7 +93898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001469" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001470", @@ -87057,7 +93923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001470" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001471", @@ -87080,7 +93948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001471" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001472", @@ -87103,7 +93973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001472" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001473", @@ -87126,7 +93998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001473" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001474", @@ -87149,7 +94023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001474" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001475", @@ -87172,7 +94048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001475" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001476", @@ -87195,7 +94073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001476" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001477", @@ -87218,7 +94098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001477" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001478", @@ -87241,7 +94123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001478" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001479", @@ -87264,7 +94148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001479" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001480", @@ -87287,7 +94173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001480" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001481", @@ -87310,7 +94198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001481" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001482", @@ -87333,7 +94223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001482" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001483", @@ -87356,7 +94248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001483" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001484", @@ -87379,7 +94273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001484" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001485", @@ -87402,7 +94298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001485" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001486", @@ -87425,7 +94323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001486" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001487", @@ -87448,7 +94348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001487" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001488", @@ -87471,7 +94373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001488" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001489", @@ -87494,7 +94398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001489" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001490", @@ -87517,7 +94423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001490" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001491", @@ -87540,7 +94448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001491" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001492", @@ -87563,7 +94473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001492" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001493", @@ -87586,7 +94498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001493" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001494", @@ -87609,7 +94523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001494" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001495", @@ -87632,7 +94548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001495" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001496", @@ -87655,7 +94573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001496" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001497", @@ -87678,7 +94598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001497" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001498", @@ -87701,7 +94623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001498" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001499", @@ -87724,7 +94648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001499" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001500", @@ -87747,7 +94673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001500" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001501", @@ -87770,7 +94698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001501" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001502", @@ -87793,7 +94723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001502" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001503", @@ -87816,7 +94748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001503" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001504", @@ -87839,7 +94773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001504" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001505", @@ -87862,7 +94798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001505" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001506", @@ -87885,7 +94823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001506" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001507", @@ -87908,7 +94848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001507" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001508", @@ -87931,7 +94873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001508" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001509", @@ -87954,7 +94898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001509" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001510", @@ -87977,7 +94923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001510" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001511", @@ -88000,7 +94948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001511" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001512", @@ -88023,7 +94973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001512" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001513", @@ -88046,7 +94998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001513" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001514", @@ -88069,7 +95023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001514" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001515", @@ -88092,7 +95048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001515" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001516", @@ -88115,7 +95073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001516" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001517", @@ -88138,7 +95098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001517" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001518", @@ -88161,7 +95123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001518" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001519", @@ -88184,7 +95148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001519" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001520", @@ -88207,7 +95173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001520" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001521", @@ -88230,7 +95198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001521" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001522", @@ -88253,7 +95223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001522" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001523", @@ -88276,7 +95248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001523" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001524", @@ -88299,7 +95273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001524" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001525", @@ -88322,7 +95298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001525" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001526", @@ -88345,7 +95323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001526" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001527", @@ -88368,7 +95348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001527" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001528", @@ -88391,7 +95373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001528" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001529", @@ -88414,7 +95398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001529" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001530", @@ -88437,7 +95423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001530" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001531", @@ -88460,7 +95448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001531" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001532", @@ -88483,7 +95473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001532" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001533", @@ -88506,7 +95498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001533" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001534", @@ -88529,7 +95523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001534" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001535", @@ -88552,7 +95548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001535" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001536", @@ -88575,7 +95573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001536" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001537", @@ -88598,7 +95598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001537" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001538", @@ -88621,7 +95623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001538" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001539", @@ -88644,7 +95648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001539" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001540", @@ -88667,7 +95673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001540" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001541", @@ -88690,7 +95698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001541" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001542", @@ -88713,7 +95723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001542" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001543", @@ -88736,7 +95748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001543" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001544", @@ -88759,7 +95773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001544" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001545", @@ -88782,7 +95798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001545" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001546", @@ -88805,7 +95823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001546" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001547", @@ -88828,7 +95848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001547" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001548", @@ -88851,7 +95873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001548" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001549", @@ -88874,7 +95898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001549" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001550", @@ -88897,7 +95923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001550" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001551", @@ -88920,7 +95948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001551" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001552", @@ -88943,7 +95973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001552" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001553", @@ -88966,7 +95998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001553" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001554", @@ -88989,7 +96023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001554" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001555", @@ -89012,7 +96048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001555" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001556", @@ -89035,7 +96073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001556" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001557", @@ -89058,7 +96098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001557" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001558", @@ -89081,7 +96123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001558" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001559", @@ -89104,7 +96148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001559" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001560", @@ -89127,7 +96173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001560" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001561", @@ -89150,7 +96198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001561" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001562", @@ -89173,7 +96223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001562" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001563", @@ -89196,7 +96248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001563" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001564", @@ -89219,7 +96273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001564" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001565", @@ -89242,7 +96298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001565" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001566", @@ -89265,7 +96323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001566" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001567", @@ -89288,7 +96348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001567" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001568", @@ -89311,7 +96373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001568" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001569", @@ -89334,7 +96398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001569" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001570", @@ -89357,7 +96423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001570" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001571", @@ -89380,7 +96448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001571" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001572", @@ -89403,7 +96473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001572" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001573", @@ -89426,7 +96498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001573" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001574", @@ -89449,7 +96523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001574" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001575", @@ -89472,7 +96548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001575" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001576", @@ -89495,7 +96573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001576" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001577", @@ -89518,7 +96598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001577" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001578", @@ -89541,7 +96623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001578" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001579", @@ -89564,7 +96648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001579" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001580", @@ -89587,7 +96673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001580" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001581", @@ -89610,7 +96698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001581" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001582", @@ -89633,7 +96723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001582" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001583", @@ -89656,7 +96748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001583" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001584", @@ -89679,7 +96773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001584" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001585", @@ -89702,7 +96798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001585" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001586", @@ -89725,7 +96823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001586" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001587", @@ -89748,7 +96848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001587" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001588", @@ -89771,7 +96873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001588" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001589", @@ -89794,7 +96898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001589" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001590", @@ -89817,7 +96923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001590" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001591", @@ -89840,7 +96948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001591" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001592", @@ -89863,7 +96973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001592" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001593", @@ -89886,7 +96998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001593" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001594", @@ -89909,7 +97023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001594" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001595", @@ -89932,7 +97048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001595" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001596", @@ -89955,7 +97073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001596" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001597", @@ -89978,7 +97098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001597" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001598", @@ -90001,7 +97123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001598" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001599", @@ -90024,7 +97148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001599" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001600", @@ -90047,7 +97173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001600" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001601", @@ -90070,7 +97198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001601" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001602", @@ -90093,7 +97223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001602" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001603", @@ -90116,7 +97248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001603" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001604", @@ -90139,7 +97273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001604" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E14001605", @@ -90162,7 +97298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001605" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000001", @@ -90185,7 +97323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000002", @@ -90208,7 +97348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000003", @@ -90231,7 +97373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000004", @@ -90254,7 +97398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000005", @@ -90277,7 +97423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000006", @@ -90300,7 +97448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000007", @@ -90323,7 +97473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000007" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000008", @@ -90346,7 +97498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000009", @@ -90369,7 +97523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000010", @@ -90392,7 +97548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000011", @@ -90415,7 +97573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000012", @@ -90438,7 +97598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000013", @@ -90461,7 +97623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000014", @@ -90484,7 +97648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000015", @@ -90507,7 +97673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000015" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000016", @@ -90530,7 +97698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000016" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000017", @@ -90553,7 +97723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000017" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N05000018", @@ -90576,7 +97748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "N05000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000021", @@ -90599,7 +97773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000027", @@ -90622,7 +97798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000027" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000045", @@ -90645,7 +97823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000045" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000048", @@ -90668,7 +97848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000048" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000051", @@ -90691,7 +97873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000051" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000060", @@ -90714,7 +97898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000060" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000061", @@ -90737,7 +97923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000061" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000062", @@ -90760,7 +97948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000062" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000063", @@ -90783,7 +97973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000063" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000064", @@ -90806,7 +97998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000064" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000065", @@ -90829,7 +98023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000065" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000066", @@ -90852,7 +98048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000066" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000067", @@ -90875,7 +98073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000067" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000068", @@ -90898,7 +98098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000068" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000069", @@ -90921,7 +98123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000069" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000070", @@ -90944,7 +98148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000070" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000071", @@ -90967,7 +98173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000071" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000072", @@ -90990,7 +98198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000072" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000073", @@ -91013,7 +98223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000073" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000074", @@ -91036,7 +98248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000074" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000075", @@ -91059,7 +98273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000075" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000076", @@ -91082,7 +98298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000076" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000077", @@ -91105,7 +98323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000077" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000078", @@ -91128,7 +98348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000078" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000079", @@ -91151,7 +98373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000079" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000080", @@ -91174,7 +98398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000080" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000081", @@ -91197,7 +98423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000081" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000082", @@ -91220,7 +98448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000082" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000083", @@ -91243,7 +98473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000083" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000084", @@ -91266,7 +98498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000084" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000085", @@ -91289,7 +98523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000085" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000086", @@ -91312,7 +98548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000086" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000087", @@ -91335,7 +98573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000087" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000088", @@ -91358,7 +98598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000088" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000089", @@ -91381,7 +98623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000089" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000090", @@ -91404,7 +98648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000090" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000091", @@ -91427,7 +98673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000091" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000092", @@ -91450,7 +98698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000092" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000093", @@ -91473,7 +98723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000093" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000094", @@ -91496,7 +98748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000094" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000095", @@ -91519,7 +98773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000095" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000096", @@ -91542,7 +98798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000096" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000097", @@ -91565,7 +98823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000097" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000098", @@ -91588,7 +98848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000098" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000099", @@ -91611,7 +98873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000099" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000100", @@ -91634,7 +98898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000100" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000101", @@ -91657,7 +98923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000101" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000102", @@ -91680,7 +98948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000102" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000103", @@ -91703,7 +98973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000103" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000104", @@ -91726,7 +98998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000104" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000105", @@ -91749,7 +99023,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000105" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000106", @@ -91772,7 +99048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000106" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000107", @@ -91795,7 +99073,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000107" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000108", @@ -91818,7 +99098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000108" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000109", @@ -91841,7 +99123,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000109" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000110", @@ -91864,7 +99148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000110" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S14000111", @@ -91887,7 +99173,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000111" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000081", @@ -91910,7 +99198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000081" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000082", @@ -91933,7 +99223,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000082" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000083", @@ -91956,7 +99248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000083" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000084", @@ -91979,7 +99273,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000084" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000085", @@ -92002,7 +99298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000085" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000086", @@ -92025,7 +99323,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000086" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000087", @@ -92048,7 +99348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000087" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000088", @@ -92071,7 +99373,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000088" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000089", @@ -92094,7 +99398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000089" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000090", @@ -92117,7 +99423,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000090" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000091", @@ -92140,7 +99448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000091" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000092", @@ -92163,7 +99473,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000092" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000093", @@ -92186,7 +99498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000093" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000094", @@ -92209,7 +99523,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000094" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000095", @@ -92232,7 +99548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000095" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000096", @@ -92255,7 +99573,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000096" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000097", @@ -92278,7 +99598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000097" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000098", @@ -92301,7 +99623,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000098" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000099", @@ -92324,7 +99648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000099" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000100", @@ -92347,7 +99673,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000100" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000101", @@ -92370,7 +99698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000101" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000102", @@ -92393,7 +99723,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000102" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000103", @@ -92416,7 +99748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000103" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000104", @@ -92439,7 +99773,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000104" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000105", @@ -92462,7 +99798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000105" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000106", @@ -92485,7 +99823,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000106" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000107", @@ -92508,7 +99848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000107" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000108", @@ -92531,7 +99873,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000108" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000109", @@ -92554,7 +99898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000109" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000110", @@ -92577,7 +99923,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000110" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000111", @@ -92600,7 +99948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000111" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W07000112", @@ -92623,7 +99973,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000112" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000001", @@ -92646,7 +99998,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000002", @@ -92669,7 +100023,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000003", @@ -92692,7 +100048,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000004", @@ -92715,7 +100073,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000005", @@ -92738,7 +100098,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000006", @@ -92761,7 +100123,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000007", @@ -92784,7 +100148,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000007" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000008", @@ -92807,7 +100173,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000009", @@ -92830,7 +100198,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000010", @@ -92853,7 +100223,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000011", @@ -92876,7 +100248,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000012", @@ -92899,7 +100273,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000013", @@ -92922,7 +100298,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000014", @@ -92945,7 +100323,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000015", @@ -92968,7 +100348,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000015" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000016", @@ -92991,7 +100373,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000016" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000017", @@ -93014,7 +100398,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000017" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000018", @@ -93037,7 +100423,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000019", @@ -93060,7 +100448,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000019" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000020", @@ -93083,7 +100473,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000020" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000021", @@ -93106,7 +100498,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000022", @@ -93129,7 +100523,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000022" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000023", @@ -93152,7 +100548,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000023" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000024", @@ -93175,7 +100573,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000024" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000025", @@ -93198,7 +100598,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000025" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000026", @@ -93221,7 +100623,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000026" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000030", @@ -93244,7 +100648,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000030" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000031", @@ -93267,7 +100673,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000031" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000032", @@ -93290,7 +100698,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000032" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000033", @@ -93313,7 +100723,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000033" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000034", @@ -93336,7 +100748,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000034" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000035", @@ -93359,7 +100773,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000035" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000036", @@ -93382,7 +100798,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000036" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000037", @@ -93405,7 +100823,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000037" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000038", @@ -93428,7 +100848,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000038" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000039", @@ -93451,7 +100873,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000039" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000040", @@ -93474,7 +100898,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000040" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000041", @@ -93497,7 +100923,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000041" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000042", @@ -93520,7 +100948,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000042" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000043", @@ -93543,7 +100973,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000043" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000044", @@ -93566,7 +100998,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000044" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000045", @@ -93589,7 +101023,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000045" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000046", @@ -93612,7 +101048,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000046" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000047", @@ -93635,7 +101073,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000047" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000049", @@ -93658,7 +101098,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000049" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000050", @@ -93681,7 +101123,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000050" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000051", @@ -93704,7 +101148,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000051" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000052", @@ -93727,7 +101173,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000052" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000054", @@ -93750,7 +101198,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000054" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000055", @@ -93773,7 +101223,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000055" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000056", @@ -93796,7 +101248,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000056" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000057", @@ -93819,7 +101273,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000057" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000058", @@ -93842,7 +101298,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000058" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000059", @@ -93865,7 +101323,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000059" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000060", @@ -93888,7 +101348,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000060" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000061", @@ -93911,7 +101373,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000061" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000062", @@ -93934,7 +101398,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000062" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000063", @@ -93957,7 +101423,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000063" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000064", @@ -93980,7 +101448,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000064" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000065", @@ -94003,7 +101473,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000065" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E06000066", @@ -94026,7 +101498,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000066" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000008", @@ -94049,7 +101523,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000009", @@ -94072,7 +101548,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000010", @@ -94095,7 +101573,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000011", @@ -94118,7 +101598,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000012", @@ -94141,7 +101623,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000032", @@ -94164,7 +101648,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000032" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000033", @@ -94187,7 +101673,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000033" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000034", @@ -94210,7 +101698,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000034" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000035", @@ -94233,7 +101723,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000035" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000036", @@ -94256,7 +101748,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000036" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000037", @@ -94279,7 +101773,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000037" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000038", @@ -94302,7 +101798,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000038" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000039", @@ -94325,7 +101823,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000039" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000040", @@ -94348,7 +101848,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000040" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000041", @@ -94371,7 +101873,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000041" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000042", @@ -94394,7 +101898,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000042" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000043", @@ -94417,7 +101923,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000043" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000044", @@ -94440,7 +101948,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000044" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000045", @@ -94463,7 +101973,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000045" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000046", @@ -94486,7 +101998,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000046" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000047", @@ -94509,7 +102023,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000047" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000061", @@ -94532,7 +102048,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000061" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000062", @@ -94555,7 +102073,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000062" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000063", @@ -94578,7 +102098,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000063" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000064", @@ -94601,7 +102123,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000064" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000065", @@ -94624,7 +102148,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000065" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000066", @@ -94647,7 +102173,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000066" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000067", @@ -94670,7 +102198,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000067" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000068", @@ -94693,7 +102223,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000068" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000069", @@ -94716,7 +102248,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000069" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000070", @@ -94739,7 +102273,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000070" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000071", @@ -94762,7 +102298,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000071" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000072", @@ -94785,7 +102323,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000072" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000073", @@ -94808,7 +102348,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000073" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000074", @@ -94831,7 +102373,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000074" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000075", @@ -94854,7 +102398,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000075" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000076", @@ -94877,7 +102423,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000076" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000077", @@ -94900,7 +102448,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000077" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000078", @@ -94923,7 +102473,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000078" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000079", @@ -94946,7 +102498,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000079" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000080", @@ -94969,7 +102523,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000080" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000081", @@ -94992,7 +102548,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000081" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000082", @@ -95015,7 +102573,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000082" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000083", @@ -95038,7 +102598,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000083" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000084", @@ -95061,7 +102623,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000084" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000085", @@ -95084,7 +102648,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000085" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000086", @@ -95107,7 +102673,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000086" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000087", @@ -95130,7 +102698,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000087" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000088", @@ -95153,7 +102723,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000088" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000089", @@ -95176,7 +102748,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000089" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000090", @@ -95199,7 +102773,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000090" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000091", @@ -95222,7 +102798,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000091" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000092", @@ -95245,7 +102823,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000092" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000093", @@ -95268,7 +102848,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000093" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000094", @@ -95291,7 +102873,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000094" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000095", @@ -95314,7 +102898,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000095" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000096", @@ -95337,7 +102923,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000096" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000098", @@ -95360,7 +102948,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000098" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000099", @@ -95383,7 +102973,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000099" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000102", @@ -95406,7 +102998,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000102" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000103", @@ -95429,7 +103023,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000103" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000105", @@ -95452,7 +103048,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000105" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000106", @@ -95475,7 +103073,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000106" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000107", @@ -95498,7 +103098,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000107" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000108", @@ -95521,7 +103123,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000108" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000109", @@ -95544,7 +103148,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000109" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000110", @@ -95567,7 +103173,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000110" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000111", @@ -95590,7 +103198,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000111" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000112", @@ -95613,7 +103223,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000112" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000113", @@ -95636,7 +103248,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000113" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000114", @@ -95659,7 +103273,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000114" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000115", @@ -95682,7 +103298,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000115" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000116", @@ -95705,7 +103323,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000116" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000117", @@ -95728,7 +103348,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000117" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000118", @@ -95751,7 +103373,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000118" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000119", @@ -95774,7 +103398,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000119" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000120", @@ -95797,7 +103423,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000120" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000121", @@ -95820,7 +103448,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000121" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000122", @@ -95843,7 +103473,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000122" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000123", @@ -95866,7 +103498,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000123" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000124", @@ -95889,7 +103523,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000124" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000125", @@ -95912,7 +103548,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000125" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000126", @@ -95935,7 +103573,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000126" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000127", @@ -95958,7 +103598,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000127" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000128", @@ -95981,7 +103623,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000128" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000129", @@ -96004,7 +103648,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000129" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000130", @@ -96027,7 +103673,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000130" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000131", @@ -96050,7 +103698,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000131" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000132", @@ -96073,7 +103723,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000132" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000133", @@ -96096,7 +103748,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000133" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000134", @@ -96119,7 +103773,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000134" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000135", @@ -96142,7 +103798,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000135" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000136", @@ -96165,7 +103823,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000136" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000137", @@ -96188,7 +103848,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000137" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000138", @@ -96211,7 +103873,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000138" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000139", @@ -96234,7 +103898,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000139" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000140", @@ -96257,7 +103923,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000140" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000141", @@ -96280,7 +103948,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000141" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000142", @@ -96303,7 +103973,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000142" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000143", @@ -96326,7 +103998,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000143" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000144", @@ -96349,7 +104023,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000144" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000145", @@ -96372,7 +104048,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000145" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000146", @@ -96395,7 +104073,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000146" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000147", @@ -96418,7 +104098,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000147" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000148", @@ -96441,7 +104123,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000148" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000149", @@ -96464,7 +104148,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000149" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000170", @@ -96487,7 +104173,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000170" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000171", @@ -96510,7 +104198,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000171" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000172", @@ -96533,7 +104223,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000172" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000173", @@ -96556,7 +104248,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000173" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000174", @@ -96579,7 +104273,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000174" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000175", @@ -96602,7 +104298,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000175" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000176", @@ -96625,7 +104323,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000176" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000177", @@ -96648,7 +104348,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000177" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000178", @@ -96671,7 +104373,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000178" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000179", @@ -96694,7 +104398,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000179" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000180", @@ -96717,7 +104423,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000180" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000181", @@ -96740,7 +104448,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000181" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000192", @@ -96763,7 +104473,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000192" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000193", @@ -96786,7 +104498,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000193" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000194", @@ -96809,7 +104523,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000194" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000195", @@ -96832,7 +104548,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000195" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000196", @@ -96855,7 +104573,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000196" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000197", @@ -96878,7 +104598,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000197" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000198", @@ -96901,7 +104623,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000198" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000199", @@ -96924,7 +104648,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000199" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000200", @@ -96947,7 +104673,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000200" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000202", @@ -96970,7 +104698,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000202" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000203", @@ -96993,7 +104723,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000203" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000207", @@ -97016,7 +104748,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000207" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000208", @@ -97039,7 +104773,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000208" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000209", @@ -97062,7 +104798,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000209" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000210", @@ -97085,7 +104823,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000210" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000211", @@ -97108,7 +104848,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000211" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000212", @@ -97131,7 +104873,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000212" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000213", @@ -97154,7 +104898,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000213" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000214", @@ -97177,7 +104923,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000214" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000215", @@ -97200,7 +104948,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000215" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000216", @@ -97223,7 +104973,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000216" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000217", @@ -97246,7 +104998,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000217" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000218", @@ -97269,7 +105023,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000218" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000219", @@ -97292,7 +105048,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000219" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000220", @@ -97315,7 +105073,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000220" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000221", @@ -97338,7 +105098,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000221" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000222", @@ -97361,7 +105123,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000222" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000223", @@ -97384,7 +105148,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000223" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000224", @@ -97407,7 +105173,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000224" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000225", @@ -97430,7 +105198,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000225" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000226", @@ -97453,7 +105223,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000226" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000227", @@ -97476,7 +105248,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000227" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000228", @@ -97499,7 +105273,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000228" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000229", @@ -97522,7 +105298,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000229" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000234", @@ -97545,7 +105323,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000234" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000235", @@ -97568,7 +105348,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000235" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000236", @@ -97591,7 +105373,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000236" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000237", @@ -97614,7 +105398,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000237" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000238", @@ -97637,7 +105423,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000238" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000239", @@ -97660,7 +105448,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000239" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000240", @@ -97683,7 +105473,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000240" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000241", @@ -97706,7 +105498,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000241" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000242", @@ -97729,7 +105523,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000242" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000243", @@ -97752,7 +105548,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000243" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000244", @@ -97775,7 +105573,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000244" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E07000245", @@ -97798,7 +105598,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000245" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000001", @@ -97821,7 +105623,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000002", @@ -97844,7 +105648,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000003", @@ -97867,7 +105673,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000004", @@ -97890,7 +105698,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000005", @@ -97913,7 +105723,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000006", @@ -97936,7 +105748,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000007", @@ -97959,7 +105773,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000007" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000008", @@ -97982,7 +105798,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000009", @@ -98005,7 +105823,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000010", @@ -98028,7 +105848,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000011", @@ -98051,7 +105873,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000012", @@ -98074,7 +105898,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000013", @@ -98097,7 +105923,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000014", @@ -98120,7 +105948,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000015", @@ -98143,7 +105973,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000015" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000016", @@ -98166,7 +105998,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000016" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000017", @@ -98189,7 +106023,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000017" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000018", @@ -98212,7 +106048,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000019", @@ -98235,7 +106073,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000019" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000021", @@ -98258,7 +106098,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000022", @@ -98281,7 +106123,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000022" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000023", @@ -98304,7 +106148,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000023" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000024", @@ -98327,7 +106173,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000024" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000025", @@ -98350,7 +106198,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000025" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000026", @@ -98373,7 +106223,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000026" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000027", @@ -98396,7 +106248,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000027" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000028", @@ -98419,7 +106273,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000028" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000029", @@ -98442,7 +106298,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000029" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000030", @@ -98465,7 +106323,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000030" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000031", @@ -98488,7 +106348,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000031" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000032", @@ -98511,7 +106373,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000032" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000033", @@ -98534,7 +106398,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000033" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000034", @@ -98557,7 +106423,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000034" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000035", @@ -98580,7 +106448,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000035" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000036", @@ -98603,7 +106473,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000036" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E08000037", @@ -98626,7 +106498,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000037" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000001", @@ -98649,7 +106523,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000002", @@ -98672,7 +106548,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000003", @@ -98695,7 +106573,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000004", @@ -98718,7 +106598,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000005", @@ -98741,7 +106623,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000006", @@ -98764,7 +106648,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000007", @@ -98787,7 +106673,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000007" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000008", @@ -98810,7 +106698,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000009", @@ -98833,7 +106723,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000010", @@ -98856,7 +106748,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000011", @@ -98879,7 +106773,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000012", @@ -98902,7 +106798,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000013", @@ -98925,7 +106823,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000014", @@ -98948,7 +106848,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000015", @@ -98971,7 +106873,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000015" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000016", @@ -98994,7 +106898,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000016" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000017", @@ -99017,7 +106923,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000017" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000018", @@ -99040,7 +106948,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000019", @@ -99063,7 +106973,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000019" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000020", @@ -99086,7 +106998,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000020" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000021", @@ -99109,7 +107023,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000022", @@ -99132,7 +107048,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000022" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000023", @@ -99155,7 +107073,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000023" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000024", @@ -99178,7 +107098,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000024" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000025", @@ -99201,7 +107123,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000025" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000026", @@ -99224,7 +107148,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000026" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000027", @@ -99247,7 +107173,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000027" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000028", @@ -99270,7 +107198,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000028" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000029", @@ -99293,7 +107223,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000029" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000030", @@ -99316,7 +107248,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000030" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000031", @@ -99339,7 +107273,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000031" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000032", @@ -99362,7 +107298,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000032" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@E09000033", @@ -99385,7 +107323,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000033" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000001", @@ -99408,7 +107348,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000002", @@ -99431,7 +107373,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000003", @@ -99454,7 +107398,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000004", @@ -99477,7 +107423,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000005", @@ -99500,7 +107448,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000006", @@ -99523,7 +107473,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000007", @@ -99546,7 +107498,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000007" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000008", @@ -99569,7 +107523,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000009", @@ -99592,7 +107548,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000010", @@ -99615,7 +107573,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@N09000011", @@ -99638,7 +107598,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000005", @@ -99661,7 +107623,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000006", @@ -99684,7 +107648,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000008", @@ -99707,7 +107673,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000010", @@ -99730,7 +107698,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000011", @@ -99753,7 +107723,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000013", @@ -99776,7 +107748,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000014", @@ -99799,7 +107773,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000017", @@ -99822,7 +107798,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000017" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000018", @@ -99845,7 +107823,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000019", @@ -99868,7 +107848,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000019" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000020", @@ -99891,7 +107873,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000020" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000021", @@ -99914,7 +107898,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000023", @@ -99937,7 +107923,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000023" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000026", @@ -99960,7 +107948,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000026" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000027", @@ -99983,7 +107973,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000027" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000028", @@ -100006,7 +107998,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000028" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000029", @@ -100029,7 +108023,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000029" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000030", @@ -100052,7 +108048,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000030" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000033", @@ -100075,7 +108073,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000033" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000034", @@ -100098,7 +108098,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000034" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000035", @@ -100121,7 +108123,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000035" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000036", @@ -100144,7 +108148,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000036" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000038", @@ -100167,7 +108173,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000038" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000039", @@ -100190,7 +108198,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000039" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000040", @@ -100213,7 +108223,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000040" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000041", @@ -100236,7 +108248,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000041" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000042", @@ -100259,7 +108273,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000042" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000045", @@ -100282,7 +108298,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000045" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000047", @@ -100305,7 +108323,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000047" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000048", @@ -100328,7 +108348,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000048" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000049", @@ -100351,7 +108373,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000049" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@S12000050", @@ -100374,7 +108398,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000050" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000001", @@ -100397,7 +108423,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000001" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000002", @@ -100420,7 +108448,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000002" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000003", @@ -100443,7 +108473,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000003" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000004", @@ -100466,7 +108498,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000004" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000005", @@ -100489,7 +108523,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000005" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000006", @@ -100512,7 +108548,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000006" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000008", @@ -100535,7 +108573,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000008" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000009", @@ -100558,7 +108598,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000009" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000010", @@ -100581,7 +108623,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000010" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000011", @@ -100604,7 +108648,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000011" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000012", @@ -100627,7 +108673,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000012" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000013", @@ -100650,7 +108698,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000013" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000014", @@ -100673,7 +108723,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000014" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000015", @@ -100696,7 +108748,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000015" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000016", @@ -100719,7 +108773,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000016" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000018", @@ -100742,7 +108798,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000018" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000019", @@ -100765,7 +108823,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000019" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000020", @@ -100788,7 +108848,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000020" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000021", @@ -100811,7 +108873,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000021" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000022", @@ -100834,7 +108898,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000022" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000023", @@ -100857,7 +108923,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000023" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "hmrc.employment_income.count@W06000024", @@ -100880,7 +108948,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000024" - } + }, + "uprating_from_period": "2023", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001063", @@ -100900,7 +108970,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001064", @@ -100920,7 +108992,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001065", @@ -100940,7 +109014,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001066", @@ -100960,7 +109036,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001067", @@ -100980,7 +109058,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001068", @@ -101000,7 +109080,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001069", @@ -101020,7 +109102,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001070", @@ -101040,7 +109124,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001071", @@ -101060,7 +109146,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001072", @@ -101080,7 +109168,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001073", @@ -101100,7 +109190,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001074", @@ -101120,7 +109212,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001075", @@ -101140,7 +109234,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001076", @@ -101160,7 +109256,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001077", @@ -101180,7 +109278,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001078", @@ -101200,7 +109300,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001079", @@ -101220,7 +109322,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001080", @@ -101240,7 +109344,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001081", @@ -101260,7 +109366,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001082", @@ -101280,7 +109388,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001083", @@ -101300,7 +109410,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001084", @@ -101320,7 +109432,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001085", @@ -101340,7 +109454,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001086", @@ -101360,7 +109476,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001087", @@ -101380,7 +109498,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001088", @@ -101400,7 +109520,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001089", @@ -101420,7 +109542,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001090", @@ -101440,7 +109564,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001091", @@ -101460,7 +109586,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001092", @@ -101480,7 +109608,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001093", @@ -101500,7 +109630,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001094", @@ -101520,7 +109652,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001095", @@ -101540,7 +109674,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001096", @@ -101560,7 +109696,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001097", @@ -101580,7 +109718,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001098", @@ -101600,7 +109740,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001099", @@ -101620,7 +109762,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001100", @@ -101640,7 +109784,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001101", @@ -101660,7 +109806,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001102", @@ -101680,7 +109828,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001103", @@ -101700,7 +109850,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001104", @@ -101720,7 +109872,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001105", @@ -101740,7 +109894,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001106", @@ -101760,7 +109916,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001107", @@ -101780,7 +109938,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001108", @@ -101800,7 +109960,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001109", @@ -101820,7 +109982,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001110", @@ -101840,7 +110004,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001111", @@ -101860,7 +110026,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001112", @@ -101880,7 +110048,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001113", @@ -101900,7 +110070,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001114", @@ -101920,7 +110092,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001115", @@ -101940,7 +110114,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001116", @@ -101960,7 +110136,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001117", @@ -101980,7 +110158,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001118", @@ -102000,7 +110180,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001119", @@ -102020,7 +110202,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001120", @@ -102040,7 +110224,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001121", @@ -102060,7 +110246,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001122", @@ -102080,7 +110268,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001123", @@ -102100,7 +110290,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001124", @@ -102120,7 +110312,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001125", @@ -102140,7 +110334,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001126", @@ -102160,7 +110356,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001127", @@ -102180,7 +110378,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001128", @@ -102200,7 +110400,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001129", @@ -102220,7 +110422,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001130", @@ -102240,7 +110444,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001131", @@ -102260,7 +110466,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001132", @@ -102280,7 +110488,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001133", @@ -102300,7 +110510,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001134", @@ -102320,7 +110532,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001135", @@ -102340,7 +110554,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001136", @@ -102360,7 +110576,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001137", @@ -102380,7 +110598,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001138", @@ -102400,7 +110620,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001139", @@ -102420,7 +110642,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001140", @@ -102440,7 +110664,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001141", @@ -102460,7 +110686,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001142", @@ -102480,7 +110708,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001143", @@ -102500,7 +110730,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001144", @@ -102520,7 +110752,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001145", @@ -102540,7 +110774,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001146", @@ -102560,7 +110796,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001147", @@ -102580,7 +110818,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001148", @@ -102600,7 +110840,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001149", @@ -102620,7 +110862,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001150", @@ -102640,7 +110884,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001151", @@ -102660,7 +110906,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001152", @@ -102680,7 +110928,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001153", @@ -102700,7 +110950,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001154", @@ -102720,7 +110972,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001155", @@ -102740,7 +110994,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001156", @@ -102760,7 +111016,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001157", @@ -102780,7 +111038,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001158", @@ -102800,7 +111060,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001159", @@ -102820,7 +111082,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001160", @@ -102840,7 +111104,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001161", @@ -102860,7 +111126,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001162", @@ -102880,7 +111148,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001163", @@ -102900,7 +111170,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001164", @@ -102920,7 +111192,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001165", @@ -102940,7 +111214,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001166", @@ -102960,7 +111236,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001167", @@ -102980,7 +111258,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001168", @@ -103000,7 +111280,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001169", @@ -103020,7 +111302,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001170", @@ -103040,7 +111324,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001171", @@ -103060,7 +111346,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001172", @@ -103080,7 +111368,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001173", @@ -103100,7 +111390,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001174", @@ -103120,7 +111412,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001175", @@ -103140,7 +111434,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001176", @@ -103160,7 +111456,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001177", @@ -103180,7 +111478,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001178", @@ -103200,7 +111500,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001179", @@ -103220,7 +111522,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001180", @@ -103240,7 +111544,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001181", @@ -103260,7 +111566,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001182", @@ -103280,7 +111588,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001183", @@ -103300,7 +111610,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001184", @@ -103320,7 +111632,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001185", @@ -103340,7 +111654,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001186", @@ -103360,7 +111676,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001187", @@ -103380,7 +111698,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001188", @@ -103400,7 +111720,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001189", @@ -103420,7 +111742,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001190", @@ -103440,7 +111764,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001191", @@ -103460,7 +111786,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001192", @@ -103480,7 +111808,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001193", @@ -103500,7 +111830,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001194", @@ -103520,7 +111852,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001195", @@ -103540,7 +111874,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001196", @@ -103560,7 +111896,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001197", @@ -103580,7 +111918,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001198", @@ -103600,7 +111940,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001199", @@ -103620,7 +111962,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001200", @@ -103640,7 +111984,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001201", @@ -103660,7 +112006,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001202", @@ -103680,7 +112028,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001203", @@ -103700,7 +112050,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001204", @@ -103720,7 +112072,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001205", @@ -103740,7 +112094,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001206", @@ -103760,7 +112116,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001207", @@ -103780,7 +112138,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001208", @@ -103800,7 +112160,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001209", @@ -103820,7 +112182,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001210", @@ -103840,7 +112204,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001211", @@ -103860,7 +112226,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001212", @@ -103880,7 +112248,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001213", @@ -103900,7 +112270,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001214", @@ -103920,7 +112292,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001215", @@ -103940,7 +112314,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001216", @@ -103960,7 +112336,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001217", @@ -103980,7 +112358,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001218", @@ -104000,7 +112380,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001219", @@ -104020,7 +112402,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001220", @@ -104040,7 +112424,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001221", @@ -104060,7 +112446,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001222", @@ -104080,7 +112468,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001223", @@ -104100,7 +112490,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001224", @@ -104120,7 +112512,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001225", @@ -104140,7 +112534,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001226", @@ -104160,7 +112556,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001227", @@ -104180,7 +112578,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001228", @@ -104200,7 +112600,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001229", @@ -104220,7 +112622,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001230", @@ -104240,7 +112644,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001231", @@ -104260,7 +112666,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001232", @@ -104280,7 +112688,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001233", @@ -104300,7 +112710,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001234", @@ -104320,7 +112732,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001235", @@ -104340,7 +112754,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001236", @@ -104360,7 +112776,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001237", @@ -104380,7 +112798,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001238", @@ -104400,7 +112820,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001239", @@ -104420,7 +112842,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001240", @@ -104440,7 +112864,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001241", @@ -104460,7 +112886,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001242", @@ -104480,7 +112908,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001243", @@ -104500,7 +112930,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001244", @@ -104520,7 +112952,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001245", @@ -104540,7 +112974,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001246", @@ -104560,7 +112996,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001247", @@ -104580,7 +113018,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001248", @@ -104600,7 +113040,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001249", @@ -104620,7 +113062,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001250", @@ -104640,7 +113084,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001251", @@ -104660,7 +113106,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001252", @@ -104680,7 +113128,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001253", @@ -104700,7 +113150,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001254", @@ -104720,7 +113172,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001255", @@ -104740,7 +113194,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001256", @@ -104760,7 +113216,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001257", @@ -104780,7 +113238,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001258", @@ -104800,7 +113260,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001259", @@ -104820,7 +113282,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001260", @@ -104840,7 +113304,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001261", @@ -104860,7 +113326,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001262", @@ -104880,7 +113348,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001263", @@ -104900,7 +113370,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001264", @@ -104920,7 +113392,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001265", @@ -104940,7 +113414,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001266", @@ -104960,7 +113436,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001267", @@ -104980,7 +113458,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001268", @@ -105000,7 +113480,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001269", @@ -105020,7 +113502,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001270", @@ -105040,7 +113524,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001271", @@ -105060,7 +113546,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001272", @@ -105080,7 +113568,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001273", @@ -105100,7 +113590,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001274", @@ -105120,7 +113612,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001275", @@ -105140,7 +113634,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001276", @@ -105160,7 +113656,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001277", @@ -105180,7 +113678,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001278", @@ -105200,7 +113700,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001279", @@ -105220,7 +113722,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001280", @@ -105240,7 +113744,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001281", @@ -105260,7 +113766,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001282", @@ -105280,7 +113788,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001283", @@ -105300,7 +113810,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001284", @@ -105320,7 +113832,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001285", @@ -105340,7 +113854,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001286", @@ -105360,7 +113876,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001287", @@ -105380,7 +113898,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001288", @@ -105400,7 +113920,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001289", @@ -105420,7 +113942,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001290", @@ -105440,7 +113964,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001291", @@ -105460,7 +113986,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001292", @@ -105480,7 +114008,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001293", @@ -105500,7 +114030,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001294", @@ -105520,7 +114052,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001295", @@ -105540,7 +114074,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001296", @@ -105560,7 +114096,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001297", @@ -105580,7 +114118,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001298", @@ -105600,7 +114140,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001299", @@ -105620,7 +114162,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001300", @@ -105640,7 +114184,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001301", @@ -105660,7 +114206,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001302", @@ -105680,7 +114228,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001303", @@ -105700,7 +114250,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001304", @@ -105720,7 +114272,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001305", @@ -105740,7 +114294,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001306", @@ -105760,7 +114316,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001307", @@ -105780,7 +114338,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001308", @@ -105800,7 +114360,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001309", @@ -105820,7 +114382,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001310", @@ -105840,7 +114404,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001311", @@ -105860,7 +114426,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001312", @@ -105880,7 +114448,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001313", @@ -105900,7 +114470,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001314", @@ -105920,7 +114492,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001315", @@ -105940,7 +114514,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001316", @@ -105960,7 +114536,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001317", @@ -105980,7 +114558,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001318", @@ -106000,7 +114580,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001319", @@ -106020,7 +114602,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001320", @@ -106040,7 +114624,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001321", @@ -106060,7 +114646,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001322", @@ -106080,7 +114668,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001323", @@ -106100,7 +114690,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001324", @@ -106120,7 +114712,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001325", @@ -106140,7 +114734,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001326", @@ -106160,7 +114756,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001327", @@ -106180,7 +114778,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001328", @@ -106200,7 +114800,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001329", @@ -106220,7 +114822,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001330", @@ -106240,7 +114844,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001331", @@ -106260,7 +114866,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001332", @@ -106280,7 +114888,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001333", @@ -106300,7 +114910,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001334", @@ -106320,7 +114932,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001335", @@ -106340,7 +114954,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001336", @@ -106360,7 +114976,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001337", @@ -106380,7 +114998,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001338", @@ -106400,7 +115020,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001339", @@ -106420,7 +115042,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001340", @@ -106440,7 +115064,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001341", @@ -106460,7 +115086,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001342", @@ -106480,7 +115108,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001343", @@ -106500,7 +115130,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001344", @@ -106520,7 +115152,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001345", @@ -106540,7 +115174,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001346", @@ -106560,7 +115196,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001347", @@ -106580,7 +115218,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001348", @@ -106600,7 +115240,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001349", @@ -106620,7 +115262,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001350", @@ -106640,7 +115284,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001351", @@ -106660,7 +115306,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001352", @@ -106680,7 +115328,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001353", @@ -106700,7 +115350,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001354", @@ -106720,7 +115372,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001355", @@ -106740,7 +115394,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001356", @@ -106760,7 +115416,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001357", @@ -106780,7 +115438,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001358", @@ -106800,7 +115460,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001359", @@ -106820,7 +115482,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001360", @@ -106840,7 +115504,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001361", @@ -106860,7 +115526,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001362", @@ -106880,7 +115548,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001363", @@ -106900,7 +115570,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001364", @@ -106920,7 +115592,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001365", @@ -106940,7 +115614,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001366", @@ -106960,7 +115636,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001367", @@ -106980,7 +115658,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001368", @@ -107000,7 +115680,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001369", @@ -107020,7 +115702,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001370", @@ -107040,7 +115724,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001371", @@ -107060,7 +115746,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001372", @@ -107080,7 +115768,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001373", @@ -107100,7 +115790,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001374", @@ -107120,7 +115812,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001375", @@ -107140,7 +115834,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001376", @@ -107160,7 +115856,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001377", @@ -107180,7 +115878,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001378", @@ -107200,7 +115900,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001379", @@ -107220,7 +115922,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001380", @@ -107240,7 +115944,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001381", @@ -107260,7 +115966,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001382", @@ -107280,7 +115988,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001383", @@ -107300,7 +116010,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001384", @@ -107320,7 +116032,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001385", @@ -107340,7 +116054,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001386", @@ -107360,7 +116076,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001387", @@ -107380,7 +116098,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001388", @@ -107400,7 +116120,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001389", @@ -107420,7 +116142,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001390", @@ -107440,7 +116164,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001391", @@ -107460,7 +116186,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001392", @@ -107480,7 +116208,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001393", @@ -107500,7 +116230,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001394", @@ -107520,7 +116252,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001395", @@ -107540,7 +116274,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001396", @@ -107560,7 +116296,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001397", @@ -107580,7 +116318,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001398", @@ -107600,7 +116340,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001399", @@ -107620,7 +116362,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001400", @@ -107640,7 +116384,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001401", @@ -107660,7 +116406,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001402", @@ -107680,7 +116428,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001403", @@ -107700,7 +116450,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001404", @@ -107720,7 +116472,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001405", @@ -107740,7 +116494,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001406", @@ -107760,7 +116516,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001407", @@ -107780,7 +116538,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001408", @@ -107800,7 +116560,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001409", @@ -107820,7 +116582,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001410", @@ -107840,7 +116604,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001411", @@ -107860,7 +116626,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001412", @@ -107880,7 +116648,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001413", @@ -107900,7 +116670,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001414", @@ -107920,7 +116692,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001415", @@ -107940,7 +116714,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001416", @@ -107960,7 +116736,9 @@ "geography_level": "constituency", "geography_id": "E14001416" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001417", @@ -107980,7 +116758,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001418", @@ -108000,7 +116780,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001419", @@ -108020,7 +116802,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001420", @@ -108040,7 +116824,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001421", @@ -108060,7 +116846,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001422", @@ -108080,7 +116868,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001423", @@ -108100,7 +116890,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001424", @@ -108120,7 +116912,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001425", @@ -108140,7 +116934,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001426", @@ -108160,7 +116956,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001427", @@ -108180,7 +116978,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001428", @@ -108200,7 +117000,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001429", @@ -108220,7 +117022,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001430", @@ -108240,7 +117044,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001431", @@ -108260,7 +117066,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001432", @@ -108280,7 +117088,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001433", @@ -108300,7 +117110,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001434", @@ -108320,7 +117132,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001435", @@ -108340,7 +117154,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001436", @@ -108360,7 +117176,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001437", @@ -108380,7 +117198,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001438", @@ -108400,7 +117220,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001439", @@ -108420,7 +117242,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001440", @@ -108440,7 +117264,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001441", @@ -108460,7 +117286,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001442", @@ -108480,7 +117308,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001443", @@ -108500,7 +117330,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001444", @@ -108520,7 +117352,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001445", @@ -108540,7 +117374,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001446", @@ -108560,7 +117396,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001447", @@ -108580,7 +117418,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001448", @@ -108600,7 +117440,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001449", @@ -108620,7 +117462,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001450", @@ -108640,7 +117484,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001451", @@ -108660,7 +117506,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001452", @@ -108680,7 +117528,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001453", @@ -108700,7 +117550,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001454", @@ -108720,7 +117572,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001455", @@ -108740,7 +117594,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001456", @@ -108760,7 +117616,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001457", @@ -108780,7 +117638,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001458", @@ -108800,7 +117660,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001459", @@ -108820,7 +117682,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001460", @@ -108840,7 +117704,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001461", @@ -108860,7 +117726,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001462", @@ -108880,7 +117748,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001463", @@ -108900,7 +117770,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001464", @@ -108920,7 +117792,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001465", @@ -108940,7 +117814,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001466", @@ -108960,7 +117836,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001467", @@ -108980,7 +117858,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001468", @@ -109000,7 +117880,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001469", @@ -109020,7 +117902,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001470", @@ -109040,7 +117924,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001471", @@ -109060,7 +117946,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001472", @@ -109080,7 +117968,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001473", @@ -109100,7 +117990,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001474", @@ -109120,7 +118012,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001475", @@ -109140,7 +118034,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001476", @@ -109160,7 +118056,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001477", @@ -109180,7 +118078,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001478", @@ -109200,7 +118100,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001479", @@ -109220,7 +118122,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001480", @@ -109240,7 +118144,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001481", @@ -109260,7 +118166,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001482", @@ -109280,7 +118188,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001483", @@ -109300,7 +118210,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001484", @@ -109320,7 +118232,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001485", @@ -109340,7 +118254,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001486", @@ -109360,7 +118276,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001487", @@ -109380,7 +118298,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001488", @@ -109400,7 +118320,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001489", @@ -109420,7 +118342,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001490", @@ -109440,7 +118364,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001491", @@ -109460,7 +118386,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001492", @@ -109480,7 +118408,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001493", @@ -109500,7 +118430,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001494", @@ -109520,7 +118452,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001495", @@ -109540,7 +118474,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001496", @@ -109560,7 +118496,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001497", @@ -109580,7 +118518,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001498", @@ -109600,7 +118540,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001499", @@ -109620,7 +118562,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001500", @@ -109640,7 +118584,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001501", @@ -109660,7 +118606,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001502", @@ -109680,7 +118628,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001503", @@ -109700,7 +118650,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001504", @@ -109720,7 +118672,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001505", @@ -109740,7 +118694,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001506", @@ -109760,7 +118716,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001507", @@ -109780,7 +118738,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001508", @@ -109800,7 +118760,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001509", @@ -109820,7 +118782,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001510", @@ -109840,7 +118804,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001511", @@ -109860,7 +118826,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001512", @@ -109880,7 +118848,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001513", @@ -109900,7 +118870,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001514", @@ -109920,7 +118892,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001515", @@ -109940,7 +118914,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001516", @@ -109960,7 +118936,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001517", @@ -109980,7 +118958,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001518", @@ -110000,7 +118980,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001519", @@ -110020,7 +119002,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001520", @@ -110040,7 +119024,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001521", @@ -110060,7 +119046,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001522", @@ -110080,7 +119068,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001523", @@ -110100,7 +119090,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001524", @@ -110120,7 +119112,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001525", @@ -110140,7 +119134,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001526", @@ -110160,7 +119156,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001527", @@ -110180,7 +119178,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001528", @@ -110200,7 +119200,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001529", @@ -110220,7 +119222,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001530", @@ -110240,7 +119244,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001531", @@ -110260,7 +119266,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001532", @@ -110280,7 +119288,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001533", @@ -110300,7 +119310,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001534", @@ -110320,7 +119332,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001535", @@ -110340,7 +119354,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001536", @@ -110360,7 +119376,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001537", @@ -110380,7 +119398,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001538", @@ -110400,7 +119420,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001539", @@ -110420,7 +119442,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001540", @@ -110440,7 +119464,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001541", @@ -110460,7 +119486,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001542", @@ -110480,7 +119508,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001543", @@ -110500,7 +119530,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001544", @@ -110520,7 +119552,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001545", @@ -110540,7 +119574,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001546", @@ -110560,7 +119596,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001547", @@ -110580,7 +119618,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001548", @@ -110600,7 +119640,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001549", @@ -110620,7 +119662,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001550", @@ -110640,7 +119684,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001551", @@ -110660,7 +119706,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001552", @@ -110680,7 +119728,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001553", @@ -110700,7 +119750,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001554", @@ -110720,7 +119772,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001555", @@ -110740,7 +119794,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001556", @@ -110760,7 +119816,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001557", @@ -110780,7 +119838,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001558", @@ -110800,7 +119860,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001559", @@ -110820,7 +119882,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001560", @@ -110840,7 +119904,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001561", @@ -110860,7 +119926,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001562", @@ -110880,7 +119948,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001563", @@ -110900,7 +119970,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001564", @@ -110920,7 +119992,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001565", @@ -110940,7 +120014,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001566", @@ -110960,7 +120036,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001567", @@ -110980,7 +120058,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001568", @@ -111000,7 +120080,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001569", @@ -111020,7 +120102,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001570", @@ -111040,7 +120124,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001571", @@ -111060,7 +120146,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001572", @@ -111080,7 +120168,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001573", @@ -111100,7 +120190,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001574", @@ -111120,7 +120212,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001575", @@ -111140,7 +120234,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001576", @@ -111160,7 +120256,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001577", @@ -111180,7 +120278,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001578", @@ -111200,7 +120300,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001579", @@ -111220,7 +120322,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001580", @@ -111240,7 +120344,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001581", @@ -111260,7 +120366,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001582", @@ -111280,7 +120388,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001583", @@ -111300,7 +120410,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001584", @@ -111320,7 +120432,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001585", @@ -111340,7 +120454,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001586", @@ -111360,7 +120476,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001587", @@ -111380,7 +120498,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001588", @@ -111400,7 +120520,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001589", @@ -111420,7 +120542,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001590", @@ -111440,7 +120564,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001591", @@ -111460,7 +120586,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001592", @@ -111480,7 +120608,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001593", @@ -111500,7 +120630,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001594", @@ -111520,7 +120652,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001595", @@ -111540,7 +120674,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001596", @@ -111560,7 +120696,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001597", @@ -111580,7 +120718,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001598", @@ -111600,7 +120740,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001599", @@ -111620,7 +120762,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001600", @@ -111640,7 +120784,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001601", @@ -111660,7 +120806,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001602", @@ -111680,7 +120828,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001603", @@ -111700,7 +120850,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001604", @@ -111720,7 +120872,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E14001605", @@ -111740,7 +120894,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000001", @@ -111760,7 +120916,9 @@ "geography_level": "constituency", "geography_id": "N05000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000002", @@ -111780,7 +120938,9 @@ "geography_level": "constituency", "geography_id": "N05000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000003", @@ -111800,7 +120960,9 @@ "geography_level": "constituency", "geography_id": "N05000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000004", @@ -111820,7 +120982,9 @@ "geography_level": "constituency", "geography_id": "N05000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000005", @@ -111840,7 +121004,9 @@ "geography_level": "constituency", "geography_id": "N05000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000006", @@ -111860,7 +121026,9 @@ "geography_level": "constituency", "geography_id": "N05000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000007", @@ -111880,7 +121048,9 @@ "geography_level": "constituency", "geography_id": "N05000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000008", @@ -111900,7 +121070,9 @@ "geography_level": "constituency", "geography_id": "N05000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000009", @@ -111920,7 +121092,9 @@ "geography_level": "constituency", "geography_id": "N05000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000010", @@ -111940,7 +121114,9 @@ "geography_level": "constituency", "geography_id": "N05000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000011", @@ -111960,7 +121136,9 @@ "geography_level": "constituency", "geography_id": "N05000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000012", @@ -111980,7 +121158,9 @@ "geography_level": "constituency", "geography_id": "N05000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000013", @@ -112000,7 +121180,9 @@ "geography_level": "constituency", "geography_id": "N05000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000014", @@ -112020,7 +121202,9 @@ "geography_level": "constituency", "geography_id": "N05000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000015", @@ -112040,7 +121224,9 @@ "geography_level": "constituency", "geography_id": "N05000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000016", @@ -112060,7 +121246,9 @@ "geography_level": "constituency", "geography_id": "N05000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000017", @@ -112080,7 +121268,9 @@ "geography_level": "constituency", "geography_id": "N05000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N05000018", @@ -112100,7 +121290,9 @@ "geography_level": "constituency", "geography_id": "N05000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000021", @@ -112120,7 +121312,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000027", @@ -112140,7 +121334,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000045", @@ -112160,7 +121356,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000048", @@ -112180,7 +121378,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000051", @@ -112200,7 +121400,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000060", @@ -112220,7 +121422,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000061", @@ -112240,7 +121444,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000062", @@ -112260,7 +121466,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000063", @@ -112280,7 +121488,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000064", @@ -112300,7 +121510,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000065", @@ -112320,7 +121532,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000066", @@ -112340,7 +121554,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000067", @@ -112360,7 +121576,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000068", @@ -112380,7 +121598,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000069", @@ -112400,7 +121620,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000070", @@ -112420,7 +121642,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000071", @@ -112440,7 +121664,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000072", @@ -112460,7 +121686,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000073", @@ -112480,7 +121708,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000074", @@ -112500,7 +121730,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000075", @@ -112520,7 +121752,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000076", @@ -112540,7 +121774,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000077", @@ -112560,7 +121796,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000078", @@ -112580,7 +121818,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000079", @@ -112600,7 +121840,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000080", @@ -112620,7 +121862,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000081", @@ -112640,7 +121884,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000082", @@ -112660,7 +121906,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000083", @@ -112680,7 +121928,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000084", @@ -112700,7 +121950,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000085", @@ -112720,7 +121972,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000086", @@ -112740,7 +121994,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000087", @@ -112760,7 +122016,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000088", @@ -112780,7 +122038,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000089", @@ -112800,7 +122060,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000090", @@ -112820,7 +122082,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000091", @@ -112840,7 +122104,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000092", @@ -112860,7 +122126,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000093", @@ -112880,7 +122148,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000094", @@ -112900,7 +122170,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000095", @@ -112920,7 +122192,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000096", @@ -112940,7 +122214,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000097", @@ -112960,7 +122236,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000098", @@ -112980,7 +122258,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000099", @@ -113000,7 +122280,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000100", @@ -113020,7 +122302,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000101", @@ -113040,7 +122324,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000102", @@ -113060,7 +122346,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000103", @@ -113080,7 +122368,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000104", @@ -113100,7 +122390,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000105", @@ -113120,7 +122412,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000106", @@ -113140,7 +122434,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000107", @@ -113160,7 +122456,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000108", @@ -113180,7 +122478,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000109", @@ -113200,7 +122500,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000110", @@ -113220,7 +122522,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S14000111", @@ -113240,7 +122544,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000081", @@ -113260,7 +122566,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000082", @@ -113280,7 +122588,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000083", @@ -113300,7 +122610,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000084", @@ -113320,7 +122632,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000085", @@ -113340,7 +122654,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000086", @@ -113360,7 +122676,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000087", @@ -113380,7 +122698,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000088", @@ -113400,7 +122720,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000089", @@ -113420,7 +122742,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000090", @@ -113440,7 +122764,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000091", @@ -113460,7 +122786,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000092", @@ -113480,7 +122808,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000093", @@ -113500,7 +122830,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000094", @@ -113520,7 +122852,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000095", @@ -113540,7 +122874,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000096", @@ -113560,7 +122896,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000097", @@ -113580,7 +122918,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000098", @@ -113600,7 +122940,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000099", @@ -113620,7 +122962,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000100", @@ -113640,7 +122984,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000101", @@ -113660,7 +123006,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000102", @@ -113680,7 +123028,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000103", @@ -113700,7 +123050,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000104", @@ -113720,7 +123072,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000105", @@ -113740,7 +123094,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000106", @@ -113760,7 +123116,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000107", @@ -113780,7 +123138,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000108", @@ -113800,7 +123160,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000109", @@ -113820,7 +123182,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000110", @@ -113840,7 +123204,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000111", @@ -113860,7 +123226,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W07000112", @@ -113880,7 +123248,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000001", @@ -113900,7 +123270,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000002", @@ -113920,7 +123292,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000003", @@ -113940,7 +123314,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000004", @@ -113960,7 +123336,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000005", @@ -113980,7 +123358,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000006", @@ -114000,7 +123380,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000007", @@ -114020,7 +123402,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000008", @@ -114040,7 +123424,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000009", @@ -114060,7 +123446,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000010", @@ -114080,7 +123468,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000011", @@ -114100,7 +123490,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000012", @@ -114120,7 +123512,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000013", @@ -114140,7 +123534,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000014", @@ -114160,7 +123556,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000015", @@ -114180,7 +123578,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000016", @@ -114200,7 +123600,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000017", @@ -114220,7 +123622,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000018", @@ -114240,7 +123644,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000019", @@ -114260,7 +123666,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000020", @@ -114280,7 +123688,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000021", @@ -114300,7 +123710,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000022", @@ -114320,7 +123732,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000023", @@ -114340,7 +123754,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000024", @@ -114360,7 +123776,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000025", @@ -114380,7 +123798,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000026", @@ -114400,7 +123820,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000027", @@ -114420,7 +123842,9 @@ "geography_level": "local_authority", "geography_id": "E06000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000030", @@ -114440,7 +123864,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000031", @@ -114460,7 +123886,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000032", @@ -114480,7 +123908,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000033", @@ -114500,7 +123930,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000034", @@ -114520,7 +123952,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000035", @@ -114540,7 +123974,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000036", @@ -114560,7 +123996,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000037", @@ -114580,7 +124018,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000038", @@ -114600,7 +124040,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000039", @@ -114620,7 +124062,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000040", @@ -114640,7 +124084,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000041", @@ -114660,7 +124106,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000042", @@ -114680,7 +124128,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000043", @@ -114700,7 +124150,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000044", @@ -114720,7 +124172,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000045", @@ -114740,7 +124194,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000046", @@ -114760,7 +124216,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000047", @@ -114780,7 +124238,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000049", @@ -114800,7 +124260,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000050", @@ -114820,7 +124282,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000051", @@ -114840,7 +124304,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000052", @@ -114860,7 +124326,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000053", @@ -114880,7 +124348,9 @@ "geography_level": "local_authority", "geography_id": "E06000053" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000054", @@ -114900,7 +124370,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000055", @@ -114920,7 +124392,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000056", @@ -114940,7 +124414,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000057", @@ -114960,7 +124436,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000058", @@ -114980,7 +124458,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000059", @@ -115000,7 +124480,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000060", @@ -115020,7 +124502,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000061", @@ -115040,7 +124524,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000062", @@ -115060,7 +124546,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000063", @@ -115080,7 +124568,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000064", @@ -115100,7 +124590,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000065", @@ -115120,7 +124612,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E06000066", @@ -115140,7 +124634,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000008", @@ -115160,7 +124656,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000009", @@ -115180,7 +124678,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000010", @@ -115200,7 +124700,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000011", @@ -115220,7 +124722,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000012", @@ -115240,7 +124744,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000032", @@ -115260,7 +124766,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000033", @@ -115280,7 +124788,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000034", @@ -115300,7 +124810,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000035", @@ -115320,7 +124832,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000036", @@ -115340,7 +124854,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000037", @@ -115360,7 +124876,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000038", @@ -115380,7 +124898,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000039", @@ -115400,7 +124920,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000040", @@ -115420,7 +124942,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000041", @@ -115440,7 +124964,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000042", @@ -115460,7 +124986,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000043", @@ -115480,7 +125008,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000044", @@ -115500,7 +125030,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000045", @@ -115520,7 +125052,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000046", @@ -115540,7 +125074,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000047", @@ -115560,7 +125096,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000061", @@ -115580,7 +125118,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000062", @@ -115600,7 +125140,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000063", @@ -115620,7 +125162,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000064", @@ -115640,7 +125184,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000065", @@ -115660,7 +125206,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000066", @@ -115680,7 +125228,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000067", @@ -115700,7 +125250,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000068", @@ -115720,7 +125272,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000069", @@ -115740,7 +125294,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000070", @@ -115760,7 +125316,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000071", @@ -115780,7 +125338,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000072", @@ -115800,7 +125360,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000073", @@ -115820,7 +125382,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000074", @@ -115840,7 +125404,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000075", @@ -115860,7 +125426,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000076", @@ -115880,7 +125448,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000077", @@ -115900,7 +125470,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000078", @@ -115920,7 +125492,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000079", @@ -115940,7 +125514,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000080", @@ -115960,7 +125536,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000081", @@ -115980,7 +125558,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000082", @@ -116000,7 +125580,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000083", @@ -116020,7 +125602,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000084", @@ -116040,7 +125624,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000085", @@ -116060,7 +125646,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000086", @@ -116080,7 +125668,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000087", @@ -116100,7 +125690,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000088", @@ -116120,7 +125712,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000089", @@ -116140,7 +125734,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000090", @@ -116160,7 +125756,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000091", @@ -116180,7 +125778,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000092", @@ -116200,7 +125800,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000093", @@ -116220,7 +125822,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000094", @@ -116240,7 +125844,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000095", @@ -116260,7 +125866,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000096", @@ -116280,7 +125888,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000098", @@ -116300,7 +125910,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000099", @@ -116320,7 +125932,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000102", @@ -116340,7 +125954,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000103", @@ -116360,7 +125976,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000105", @@ -116380,7 +125998,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000106", @@ -116400,7 +126020,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000107", @@ -116420,7 +126042,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000108", @@ -116440,7 +126064,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000109", @@ -116460,7 +126086,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000110", @@ -116480,7 +126108,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000111", @@ -116500,7 +126130,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000112", @@ -116520,7 +126152,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000113", @@ -116540,7 +126174,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000114", @@ -116560,7 +126196,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000115", @@ -116580,7 +126218,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000116", @@ -116600,7 +126240,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000117", @@ -116620,7 +126262,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000118", @@ -116640,7 +126284,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000119", @@ -116660,7 +126306,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000120", @@ -116680,7 +126328,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000121", @@ -116700,7 +126350,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000122", @@ -116720,7 +126372,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000123", @@ -116740,7 +126394,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000124", @@ -116760,7 +126416,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000125", @@ -116780,7 +126438,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000126", @@ -116800,7 +126460,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000127", @@ -116820,7 +126482,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000128", @@ -116840,7 +126504,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000129", @@ -116860,7 +126526,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000130", @@ -116880,7 +126548,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000131", @@ -116900,7 +126570,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000132", @@ -116920,7 +126592,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000133", @@ -116940,7 +126614,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000134", @@ -116960,7 +126636,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000135", @@ -116980,7 +126658,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000136", @@ -117000,7 +126680,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000137", @@ -117020,7 +126702,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000138", @@ -117040,7 +126724,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000139", @@ -117060,7 +126746,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000140", @@ -117080,7 +126768,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000141", @@ -117100,7 +126790,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000142", @@ -117120,7 +126812,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000143", @@ -117140,7 +126834,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000144", @@ -117160,7 +126856,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000145", @@ -117180,7 +126878,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000146", @@ -117200,7 +126900,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000147", @@ -117220,7 +126922,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000148", @@ -117240,7 +126944,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000149", @@ -117260,7 +126966,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000170", @@ -117280,7 +126988,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000171", @@ -117300,7 +127010,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000172", @@ -117320,7 +127032,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000173", @@ -117340,7 +127054,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000174", @@ -117360,7 +127076,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000175", @@ -117380,7 +127098,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000176", @@ -117400,7 +127120,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000177", @@ -117420,7 +127142,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000178", @@ -117440,7 +127164,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000179", @@ -117460,7 +127186,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000180", @@ -117480,7 +127208,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000181", @@ -117500,7 +127230,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000192", @@ -117520,7 +127252,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000193", @@ -117540,7 +127274,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000194", @@ -117560,7 +127296,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000195", @@ -117580,7 +127318,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000196", @@ -117600,7 +127340,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000197", @@ -117620,7 +127362,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000198", @@ -117640,7 +127384,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000199", @@ -117660,7 +127406,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000200", @@ -117680,7 +127428,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000202", @@ -117700,7 +127450,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000203", @@ -117720,7 +127472,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000207", @@ -117740,7 +127494,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000208", @@ -117760,7 +127516,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000209", @@ -117780,7 +127538,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000210", @@ -117800,7 +127560,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000211", @@ -117820,7 +127582,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000212", @@ -117840,7 +127604,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000213", @@ -117860,7 +127626,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000214", @@ -117880,7 +127648,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000215", @@ -117900,7 +127670,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000216", @@ -117920,7 +127692,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000217", @@ -117940,7 +127714,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000218", @@ -117960,7 +127736,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000219", @@ -117980,7 +127758,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000220", @@ -118000,7 +127780,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000221", @@ -118020,7 +127802,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000222", @@ -118040,7 +127824,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000223", @@ -118060,7 +127846,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000224", @@ -118080,7 +127868,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000225", @@ -118100,7 +127890,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000226", @@ -118120,7 +127912,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000227", @@ -118140,7 +127934,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000228", @@ -118160,7 +127956,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000229", @@ -118180,7 +127978,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000234", @@ -118200,7 +128000,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000235", @@ -118220,7 +128022,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000236", @@ -118240,7 +128044,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000237", @@ -118260,7 +128066,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000238", @@ -118280,7 +128088,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000239", @@ -118300,7 +128110,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000240", @@ -118320,7 +128132,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000241", @@ -118340,7 +128154,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000242", @@ -118360,7 +128176,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000243", @@ -118380,7 +128198,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000244", @@ -118400,7 +128220,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E07000245", @@ -118420,7 +128242,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000001", @@ -118440,7 +128264,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000002", @@ -118460,7 +128286,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000003", @@ -118480,7 +128308,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000004", @@ -118500,7 +128330,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000005", @@ -118520,7 +128352,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000006", @@ -118540,7 +128374,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000007", @@ -118560,7 +128396,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000008", @@ -118580,7 +128418,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000009", @@ -118600,7 +128440,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000010", @@ -118620,7 +128462,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000011", @@ -118640,7 +128484,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000012", @@ -118660,7 +128506,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000013", @@ -118680,7 +128528,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000014", @@ -118700,7 +128550,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000015", @@ -118720,7 +128572,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000016", @@ -118740,7 +128594,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000017", @@ -118760,7 +128616,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000018", @@ -118780,7 +128638,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000019", @@ -118800,7 +128660,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000021", @@ -118820,7 +128682,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000022", @@ -118840,7 +128704,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000023", @@ -118860,7 +128726,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000024", @@ -118880,7 +128748,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000025", @@ -118900,7 +128770,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000026", @@ -118920,7 +128792,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000027", @@ -118940,7 +128814,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000028", @@ -118960,7 +128836,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000029", @@ -118980,7 +128858,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000030", @@ -119000,7 +128880,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000031", @@ -119020,7 +128902,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000032", @@ -119040,7 +128924,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000033", @@ -119060,7 +128946,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000034", @@ -119080,7 +128968,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000035", @@ -119100,7 +128990,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000036", @@ -119120,7 +129012,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E08000037", @@ -119140,7 +129034,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000001", @@ -119160,7 +129056,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000002", @@ -119180,7 +129078,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000003", @@ -119200,7 +129100,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000004", @@ -119220,7 +129122,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000005", @@ -119240,7 +129144,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000006", @@ -119260,7 +129166,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000007", @@ -119280,7 +129188,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000008", @@ -119300,7 +129210,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000009", @@ -119320,7 +129232,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000010", @@ -119340,7 +129254,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000011", @@ -119360,7 +129276,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000012", @@ -119380,7 +129298,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000013", @@ -119400,7 +129320,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000014", @@ -119420,7 +129342,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000015", @@ -119440,7 +129364,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000016", @@ -119460,7 +129386,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000017", @@ -119480,7 +129408,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000018", @@ -119500,7 +129430,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000019", @@ -119520,7 +129452,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000020", @@ -119540,7 +129474,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000021", @@ -119560,7 +129496,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000022", @@ -119580,7 +129518,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000023", @@ -119600,7 +129540,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000024", @@ -119620,7 +129562,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000025", @@ -119640,7 +129584,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000026", @@ -119660,7 +129606,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000027", @@ -119680,7 +129628,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000028", @@ -119700,7 +129650,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000029", @@ -119720,7 +129672,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000030", @@ -119740,7 +129694,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000031", @@ -119760,7 +129716,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000032", @@ -119780,7 +129738,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@E09000033", @@ -119800,7 +129760,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000001", @@ -119820,7 +129782,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000002", @@ -119840,7 +129804,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000003", @@ -119860,7 +129826,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000004", @@ -119880,7 +129848,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000005", @@ -119900,7 +129870,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000006", @@ -119920,7 +129892,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000007", @@ -119940,7 +129914,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000008", @@ -119960,7 +129936,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000009", @@ -119980,7 +129958,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000010", @@ -120000,7 +129980,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@N09000011", @@ -120020,7 +130002,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000005", @@ -120040,7 +130024,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000006", @@ -120060,7 +130046,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000008", @@ -120080,7 +130068,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000010", @@ -120100,7 +130090,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000011", @@ -120120,7 +130112,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000013", @@ -120140,7 +130134,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000014", @@ -120160,7 +130156,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000017", @@ -120180,7 +130178,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000018", @@ -120200,7 +130200,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000019", @@ -120220,7 +130222,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000020", @@ -120240,7 +130244,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000021", @@ -120260,7 +130266,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000023", @@ -120280,7 +130288,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000026", @@ -120300,7 +130310,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000027", @@ -120320,7 +130332,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000028", @@ -120340,7 +130354,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000029", @@ -120360,7 +130376,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000030", @@ -120380,7 +130398,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000033", @@ -120400,7 +130420,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000034", @@ -120420,7 +130442,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000035", @@ -120440,7 +130464,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000036", @@ -120460,7 +130486,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000038", @@ -120480,7 +130508,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000039", @@ -120500,7 +130530,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000040", @@ -120520,7 +130552,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000041", @@ -120540,7 +130574,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000042", @@ -120560,7 +130596,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000045", @@ -120580,7 +130618,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000047", @@ -120600,7 +130640,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000048", @@ -120620,7 +130662,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000049", @@ -120640,7 +130684,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@S12000050", @@ -120660,7 +130706,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000001", @@ -120680,7 +130728,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000002", @@ -120700,7 +130750,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000003", @@ -120720,7 +130772,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000004", @@ -120740,7 +130794,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000005", @@ -120760,7 +130816,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000006", @@ -120780,7 +130838,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000008", @@ -120800,7 +130860,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000009", @@ -120820,7 +130882,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000010", @@ -120840,7 +130904,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000011", @@ -120860,7 +130926,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000012", @@ -120880,7 +130948,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000013", @@ -120900,7 +130970,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000014", @@ -120920,7 +130992,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000015", @@ -120940,7 +131014,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000016", @@ -120960,7 +131036,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000018", @@ -120980,7 +131058,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000019", @@ -121000,7 +131080,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000020", @@ -121020,7 +131102,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000021", @@ -121040,7 +131124,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000022", @@ -121060,7 +131146,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000023", @@ -121080,7 +131168,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.0_10@W06000024", @@ -121100,7 +131190,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001063", @@ -121120,7 +131212,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001064", @@ -121140,7 +131234,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001065", @@ -121160,7 +131256,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001066", @@ -121180,7 +131278,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001067", @@ -121200,7 +131300,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001068", @@ -121220,7 +131322,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001069", @@ -121240,7 +131344,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001070", @@ -121260,7 +131366,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001071", @@ -121280,7 +131388,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001072", @@ -121300,7 +131410,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001073", @@ -121320,7 +131432,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001074", @@ -121340,7 +131454,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001075", @@ -121360,7 +131476,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001076", @@ -121380,7 +131498,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001077", @@ -121400,7 +131520,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001078", @@ -121420,7 +131542,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001079", @@ -121440,7 +131564,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001080", @@ -121460,7 +131586,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001081", @@ -121480,7 +131608,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001082", @@ -121500,7 +131630,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001083", @@ -121520,7 +131652,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001084", @@ -121540,7 +131674,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001085", @@ -121560,7 +131696,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001086", @@ -121580,7 +131718,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001087", @@ -121600,7 +131740,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001088", @@ -121620,7 +131762,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001089", @@ -121640,7 +131784,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001090", @@ -121660,7 +131806,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001091", @@ -121680,7 +131828,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001092", @@ -121700,7 +131850,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001093", @@ -121720,7 +131872,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001094", @@ -121740,7 +131894,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001095", @@ -121760,7 +131916,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001096", @@ -121780,7 +131938,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001097", @@ -121800,7 +131960,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001098", @@ -121820,7 +131982,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001099", @@ -121840,7 +132004,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001100", @@ -121860,7 +132026,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001101", @@ -121880,7 +132048,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001102", @@ -121900,7 +132070,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001103", @@ -121920,7 +132092,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001104", @@ -121940,7 +132114,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001105", @@ -121960,7 +132136,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001106", @@ -121980,7 +132158,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001107", @@ -122000,7 +132180,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001108", @@ -122020,7 +132202,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001109", @@ -122040,7 +132224,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001110", @@ -122060,7 +132246,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001111", @@ -122080,7 +132268,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001112", @@ -122100,7 +132290,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001113", @@ -122120,7 +132312,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001114", @@ -122140,7 +132334,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001115", @@ -122160,7 +132356,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001116", @@ -122180,7 +132378,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001117", @@ -122200,7 +132400,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001118", @@ -122220,7 +132422,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001119", @@ -122240,7 +132444,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001120", @@ -122260,7 +132466,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001121", @@ -122280,7 +132488,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001122", @@ -122300,7 +132510,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001123", @@ -122320,7 +132532,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001124", @@ -122340,7 +132554,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001125", @@ -122360,7 +132576,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001126", @@ -122380,7 +132598,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001127", @@ -122400,7 +132620,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001128", @@ -122420,7 +132642,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001129", @@ -122440,7 +132664,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001130", @@ -122460,7 +132686,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001131", @@ -122480,7 +132708,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001132", @@ -122500,7 +132730,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001133", @@ -122520,7 +132752,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001134", @@ -122540,7 +132774,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001135", @@ -122560,7 +132796,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001136", @@ -122580,7 +132818,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001137", @@ -122600,7 +132840,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001138", @@ -122620,7 +132862,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001139", @@ -122640,7 +132884,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001140", @@ -122660,7 +132906,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001141", @@ -122680,7 +132928,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001142", @@ -122700,7 +132950,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001143", @@ -122720,7 +132972,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001144", @@ -122740,7 +132994,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001145", @@ -122760,7 +133016,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001146", @@ -122780,7 +133038,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001147", @@ -122800,7 +133060,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001148", @@ -122820,7 +133082,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001149", @@ -122840,7 +133104,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001150", @@ -122860,7 +133126,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001151", @@ -122880,7 +133148,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001152", @@ -122900,7 +133170,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001153", @@ -122920,7 +133192,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001154", @@ -122940,7 +133214,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001155", @@ -122960,7 +133236,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001156", @@ -122980,7 +133258,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001157", @@ -123000,7 +133280,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001158", @@ -123020,7 +133302,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001159", @@ -123040,7 +133324,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001160", @@ -123060,7 +133346,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001161", @@ -123080,7 +133368,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001162", @@ -123100,7 +133390,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001163", @@ -123120,7 +133412,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001164", @@ -123140,7 +133434,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001165", @@ -123160,7 +133456,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001166", @@ -123180,7 +133478,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001167", @@ -123200,7 +133500,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001168", @@ -123220,7 +133522,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001169", @@ -123240,7 +133544,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001170", @@ -123260,7 +133566,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001171", @@ -123280,7 +133588,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001172", @@ -123300,7 +133610,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001173", @@ -123320,7 +133632,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001174", @@ -123340,7 +133654,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001175", @@ -123360,7 +133676,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001176", @@ -123380,7 +133698,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001177", @@ -123400,7 +133720,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001178", @@ -123420,7 +133742,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001179", @@ -123440,7 +133764,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001180", @@ -123460,7 +133786,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001181", @@ -123480,7 +133808,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001182", @@ -123500,7 +133830,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001183", @@ -123520,7 +133852,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001184", @@ -123540,7 +133874,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001185", @@ -123560,7 +133896,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001186", @@ -123580,7 +133918,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001187", @@ -123600,7 +133940,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001188", @@ -123620,7 +133962,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001189", @@ -123640,7 +133984,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001190", @@ -123660,7 +134006,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001191", @@ -123680,7 +134028,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001192", @@ -123700,7 +134050,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001193", @@ -123720,7 +134072,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001194", @@ -123740,7 +134094,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001195", @@ -123760,7 +134116,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001196", @@ -123780,7 +134138,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001197", @@ -123800,7 +134160,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001198", @@ -123820,7 +134182,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001199", @@ -123840,7 +134204,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001200", @@ -123860,7 +134226,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001201", @@ -123880,7 +134248,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001202", @@ -123900,7 +134270,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001203", @@ -123920,7 +134292,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001204", @@ -123940,7 +134314,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001205", @@ -123960,7 +134336,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001206", @@ -123980,7 +134358,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001207", @@ -124000,7 +134380,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001208", @@ -124020,7 +134402,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001209", @@ -124040,7 +134424,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001210", @@ -124060,7 +134446,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001211", @@ -124080,7 +134468,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001212", @@ -124100,7 +134490,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001213", @@ -124120,7 +134512,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001214", @@ -124140,7 +134534,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001215", @@ -124160,7 +134556,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001216", @@ -124180,7 +134578,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001217", @@ -124200,7 +134600,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001218", @@ -124220,7 +134622,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001219", @@ -124240,7 +134644,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001220", @@ -124260,7 +134666,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001221", @@ -124280,7 +134688,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001222", @@ -124300,7 +134710,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001223", @@ -124320,7 +134732,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001224", @@ -124340,7 +134754,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001225", @@ -124360,7 +134776,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001226", @@ -124380,7 +134798,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001227", @@ -124400,7 +134820,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001228", @@ -124420,7 +134842,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001229", @@ -124440,7 +134864,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001230", @@ -124460,7 +134886,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001231", @@ -124480,7 +134908,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001232", @@ -124500,7 +134930,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001233", @@ -124520,7 +134952,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001234", @@ -124540,7 +134974,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001235", @@ -124560,7 +134996,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001236", @@ -124580,7 +135018,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001237", @@ -124600,7 +135040,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001238", @@ -124620,7 +135062,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001239", @@ -124640,7 +135084,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001240", @@ -124660,7 +135106,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001241", @@ -124680,7 +135128,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001242", @@ -124700,7 +135150,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001243", @@ -124720,7 +135172,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001244", @@ -124740,7 +135194,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001245", @@ -124760,7 +135216,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001246", @@ -124780,7 +135238,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001247", @@ -124800,7 +135260,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001248", @@ -124820,7 +135282,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001249", @@ -124840,7 +135304,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001250", @@ -124860,7 +135326,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001251", @@ -124880,7 +135348,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001252", @@ -124900,7 +135370,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001253", @@ -124920,7 +135392,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001254", @@ -124940,7 +135414,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001255", @@ -124960,7 +135436,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001256", @@ -124980,7 +135458,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001257", @@ -125000,7 +135480,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001258", @@ -125020,7 +135502,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001259", @@ -125040,7 +135524,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001260", @@ -125060,7 +135546,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001261", @@ -125080,7 +135568,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001262", @@ -125100,7 +135590,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001263", @@ -125120,7 +135612,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001264", @@ -125140,7 +135634,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001265", @@ -125160,7 +135656,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001266", @@ -125180,7 +135678,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001267", @@ -125200,7 +135700,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001268", @@ -125220,7 +135722,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001269", @@ -125240,7 +135744,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001270", @@ -125260,7 +135766,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001271", @@ -125280,7 +135788,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001272", @@ -125300,7 +135810,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001273", @@ -125320,7 +135832,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001274", @@ -125340,7 +135854,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001275", @@ -125360,7 +135876,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001276", @@ -125380,7 +135898,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001277", @@ -125400,7 +135920,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001278", @@ -125420,7 +135942,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001279", @@ -125440,7 +135964,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001280", @@ -125460,7 +135986,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001281", @@ -125480,7 +136008,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001282", @@ -125500,7 +136030,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001283", @@ -125520,7 +136052,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001284", @@ -125540,7 +136074,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001285", @@ -125560,7 +136096,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001286", @@ -125580,7 +136118,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001287", @@ -125600,7 +136140,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001288", @@ -125620,7 +136162,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001289", @@ -125640,7 +136184,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001290", @@ -125660,7 +136206,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001291", @@ -125680,7 +136228,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001292", @@ -125700,7 +136250,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001293", @@ -125720,7 +136272,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001294", @@ -125740,7 +136294,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001295", @@ -125760,7 +136316,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001296", @@ -125780,7 +136338,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001297", @@ -125800,7 +136360,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001298", @@ -125820,7 +136382,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001299", @@ -125840,7 +136404,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001300", @@ -125860,7 +136426,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001301", @@ -125880,7 +136448,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001302", @@ -125900,7 +136470,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001303", @@ -125920,7 +136492,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001304", @@ -125940,7 +136514,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001305", @@ -125960,7 +136536,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001306", @@ -125980,7 +136558,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001307", @@ -126000,7 +136580,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001308", @@ -126020,7 +136602,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001309", @@ -126040,7 +136624,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001310", @@ -126060,7 +136646,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001311", @@ -126080,7 +136668,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001312", @@ -126100,7 +136690,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001313", @@ -126120,7 +136712,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001314", @@ -126140,7 +136734,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001315", @@ -126160,7 +136756,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001316", @@ -126180,7 +136778,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001317", @@ -126200,7 +136800,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001318", @@ -126220,7 +136822,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001319", @@ -126240,7 +136844,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001320", @@ -126260,7 +136866,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001321", @@ -126280,7 +136888,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001322", @@ -126300,7 +136910,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001323", @@ -126320,7 +136932,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001324", @@ -126340,7 +136954,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001325", @@ -126360,7 +136976,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001326", @@ -126380,7 +136998,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001327", @@ -126400,7 +137020,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001328", @@ -126420,7 +137042,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001329", @@ -126440,7 +137064,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001330", @@ -126460,7 +137086,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001331", @@ -126480,7 +137108,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001332", @@ -126500,7 +137130,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001333", @@ -126520,7 +137152,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001334", @@ -126540,7 +137174,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001335", @@ -126560,7 +137196,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001336", @@ -126580,7 +137218,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001337", @@ -126600,7 +137240,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001338", @@ -126620,7 +137262,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001339", @@ -126640,7 +137284,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001340", @@ -126660,7 +137306,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001341", @@ -126680,7 +137328,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001342", @@ -126700,7 +137350,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001343", @@ -126720,7 +137372,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001344", @@ -126740,7 +137394,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001345", @@ -126760,7 +137416,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001346", @@ -126780,7 +137438,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001347", @@ -126800,7 +137460,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001348", @@ -126820,7 +137482,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001349", @@ -126840,7 +137504,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001350", @@ -126860,7 +137526,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001351", @@ -126880,7 +137548,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001352", @@ -126900,7 +137570,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001353", @@ -126920,7 +137592,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001354", @@ -126940,7 +137614,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001355", @@ -126960,7 +137636,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001356", @@ -126980,7 +137658,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001357", @@ -127000,7 +137680,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001358", @@ -127020,7 +137702,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001359", @@ -127040,7 +137724,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001360", @@ -127060,7 +137746,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001361", @@ -127080,7 +137768,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001362", @@ -127100,7 +137790,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001363", @@ -127120,7 +137812,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001364", @@ -127140,7 +137834,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001365", @@ -127160,7 +137856,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001366", @@ -127180,7 +137878,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001367", @@ -127200,7 +137900,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001368", @@ -127220,7 +137922,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001369", @@ -127240,7 +137944,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001370", @@ -127260,7 +137966,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001371", @@ -127280,7 +137988,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001372", @@ -127300,7 +138010,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001373", @@ -127320,7 +138032,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001374", @@ -127340,7 +138054,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001375", @@ -127360,7 +138076,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001376", @@ -127380,7 +138098,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001377", @@ -127400,7 +138120,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001378", @@ -127420,7 +138142,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001379", @@ -127440,7 +138164,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001380", @@ -127460,7 +138186,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001381", @@ -127480,7 +138208,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001382", @@ -127500,7 +138230,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001383", @@ -127520,7 +138252,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001384", @@ -127540,7 +138274,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001385", @@ -127560,7 +138296,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001386", @@ -127580,7 +138318,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001387", @@ -127600,7 +138340,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001388", @@ -127620,7 +138362,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001389", @@ -127640,7 +138384,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001390", @@ -127660,7 +138406,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001391", @@ -127680,7 +138428,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001392", @@ -127700,7 +138450,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001393", @@ -127720,7 +138472,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001394", @@ -127740,7 +138494,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001395", @@ -127760,7 +138516,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001396", @@ -127780,7 +138538,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001397", @@ -127800,7 +138560,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001398", @@ -127820,7 +138582,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001399", @@ -127840,7 +138604,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001400", @@ -127860,7 +138626,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001401", @@ -127880,7 +138648,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001402", @@ -127900,7 +138670,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001403", @@ -127920,7 +138692,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001404", @@ -127940,7 +138714,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001405", @@ -127960,7 +138736,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001406", @@ -127980,7 +138758,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001407", @@ -128000,7 +138780,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001408", @@ -128020,7 +138802,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001409", @@ -128040,7 +138824,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001410", @@ -128060,7 +138846,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001411", @@ -128080,7 +138868,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001412", @@ -128100,7 +138890,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001413", @@ -128120,7 +138912,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001414", @@ -128140,7 +138934,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001415", @@ -128160,7 +138956,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001416", @@ -128180,7 +138978,9 @@ "geography_level": "constituency", "geography_id": "E14001416" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001417", @@ -128200,7 +139000,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001418", @@ -128220,7 +139022,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001419", @@ -128240,7 +139044,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001420", @@ -128260,7 +139066,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001421", @@ -128280,7 +139088,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001422", @@ -128300,7 +139110,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001423", @@ -128320,7 +139132,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001424", @@ -128340,7 +139154,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001425", @@ -128360,7 +139176,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001426", @@ -128380,7 +139198,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001427", @@ -128400,7 +139220,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001428", @@ -128420,7 +139242,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001429", @@ -128440,7 +139264,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001430", @@ -128460,7 +139286,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001431", @@ -128480,7 +139308,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001432", @@ -128500,7 +139330,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001433", @@ -128520,7 +139352,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001434", @@ -128540,7 +139374,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001435", @@ -128560,7 +139396,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001436", @@ -128580,7 +139418,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001437", @@ -128600,7 +139440,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001438", @@ -128620,7 +139462,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001439", @@ -128640,7 +139484,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001440", @@ -128660,7 +139506,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001441", @@ -128680,7 +139528,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001442", @@ -128700,7 +139550,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001443", @@ -128720,7 +139572,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001444", @@ -128740,7 +139594,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001445", @@ -128760,7 +139616,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001446", @@ -128780,7 +139638,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001447", @@ -128800,7 +139660,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001448", @@ -128820,7 +139682,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001449", @@ -128840,7 +139704,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001450", @@ -128860,7 +139726,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001451", @@ -128880,7 +139748,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001452", @@ -128900,7 +139770,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001453", @@ -128920,7 +139792,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001454", @@ -128940,7 +139814,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001455", @@ -128960,7 +139836,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001456", @@ -128980,7 +139858,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001457", @@ -129000,7 +139880,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001458", @@ -129020,7 +139902,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001459", @@ -129040,7 +139924,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001460", @@ -129060,7 +139946,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001461", @@ -129080,7 +139968,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001462", @@ -129100,7 +139990,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001463", @@ -129120,7 +140012,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001464", @@ -129140,7 +140034,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001465", @@ -129160,7 +140056,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001466", @@ -129180,7 +140078,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001467", @@ -129200,7 +140100,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001468", @@ -129220,7 +140122,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001469", @@ -129240,7 +140144,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001470", @@ -129260,7 +140166,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001471", @@ -129280,7 +140188,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001472", @@ -129300,7 +140210,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001473", @@ -129320,7 +140232,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001474", @@ -129340,7 +140254,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001475", @@ -129360,7 +140276,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001476", @@ -129380,7 +140298,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001477", @@ -129400,7 +140320,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001478", @@ -129420,7 +140342,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001479", @@ -129440,7 +140364,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001480", @@ -129460,7 +140386,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001481", @@ -129480,7 +140408,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001482", @@ -129500,7 +140430,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001483", @@ -129520,7 +140452,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001484", @@ -129540,7 +140474,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001485", @@ -129560,7 +140496,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001486", @@ -129580,7 +140518,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001487", @@ -129600,7 +140540,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001488", @@ -129620,7 +140562,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001489", @@ -129640,7 +140584,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001490", @@ -129660,7 +140606,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001491", @@ -129680,7 +140628,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001492", @@ -129700,7 +140650,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001493", @@ -129720,7 +140672,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001494", @@ -129740,7 +140694,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001495", @@ -129760,7 +140716,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001496", @@ -129780,7 +140738,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001497", @@ -129800,7 +140760,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001498", @@ -129820,7 +140782,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001499", @@ -129840,7 +140804,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001500", @@ -129860,7 +140826,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001501", @@ -129880,7 +140848,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001502", @@ -129900,7 +140870,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001503", @@ -129920,7 +140892,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001504", @@ -129940,7 +140914,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001505", @@ -129960,7 +140936,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001506", @@ -129980,7 +140958,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001507", @@ -130000,7 +140980,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001508", @@ -130020,7 +141002,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001509", @@ -130040,7 +141024,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001510", @@ -130060,7 +141046,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001511", @@ -130080,7 +141068,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001512", @@ -130100,7 +141090,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001513", @@ -130120,7 +141112,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001514", @@ -130140,7 +141134,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001515", @@ -130160,7 +141156,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001516", @@ -130180,7 +141178,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001517", @@ -130200,7 +141200,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001518", @@ -130220,7 +141222,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001519", @@ -130240,7 +141244,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001520", @@ -130260,7 +141266,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001521", @@ -130280,7 +141288,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001522", @@ -130300,7 +141310,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001523", @@ -130320,7 +141332,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001524", @@ -130340,7 +141354,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001525", @@ -130360,7 +141376,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001526", @@ -130380,7 +141398,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001527", @@ -130400,7 +141420,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001528", @@ -130420,7 +141442,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001529", @@ -130440,7 +141464,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001530", @@ -130460,7 +141486,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001531", @@ -130480,7 +141508,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001532", @@ -130500,7 +141530,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001533", @@ -130520,7 +141552,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001534", @@ -130540,7 +141574,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001535", @@ -130560,7 +141596,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001536", @@ -130580,7 +141618,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001537", @@ -130600,7 +141640,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001538", @@ -130620,7 +141662,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001539", @@ -130640,7 +141684,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001540", @@ -130660,7 +141706,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001541", @@ -130680,7 +141728,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001542", @@ -130700,7 +141750,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001543", @@ -130720,7 +141772,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001544", @@ -130740,7 +141794,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001545", @@ -130760,7 +141816,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001546", @@ -130780,7 +141838,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001547", @@ -130800,7 +141860,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001548", @@ -130820,7 +141882,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001549", @@ -130840,7 +141904,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001550", @@ -130860,7 +141926,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001551", @@ -130880,7 +141948,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001552", @@ -130900,7 +141970,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001553", @@ -130920,7 +141992,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001554", @@ -130940,7 +142014,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001555", @@ -130960,7 +142036,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001556", @@ -130980,7 +142058,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001557", @@ -131000,7 +142080,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001558", @@ -131020,7 +142102,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001559", @@ -131040,7 +142124,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001560", @@ -131060,7 +142146,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001561", @@ -131080,7 +142168,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001562", @@ -131100,7 +142190,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001563", @@ -131120,7 +142212,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001564", @@ -131140,7 +142234,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001565", @@ -131160,7 +142256,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001566", @@ -131180,7 +142278,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001567", @@ -131200,7 +142300,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001568", @@ -131220,7 +142322,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001569", @@ -131240,7 +142344,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001570", @@ -131260,7 +142366,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001571", @@ -131280,7 +142388,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001572", @@ -131300,7 +142410,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001573", @@ -131320,7 +142432,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001574", @@ -131340,7 +142454,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001575", @@ -131360,7 +142476,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001576", @@ -131380,7 +142498,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001577", @@ -131400,7 +142520,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001578", @@ -131420,7 +142542,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001579", @@ -131440,7 +142564,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001580", @@ -131460,7 +142586,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001581", @@ -131480,7 +142608,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001582", @@ -131500,7 +142630,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001583", @@ -131520,7 +142652,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001584", @@ -131540,7 +142674,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001585", @@ -131560,7 +142696,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001586", @@ -131580,7 +142718,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001587", @@ -131600,7 +142740,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001588", @@ -131620,7 +142762,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001589", @@ -131640,7 +142784,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001590", @@ -131660,7 +142806,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001591", @@ -131680,7 +142828,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001592", @@ -131700,7 +142850,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001593", @@ -131720,7 +142872,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001594", @@ -131740,7 +142894,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001595", @@ -131760,7 +142916,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001596", @@ -131780,7 +142938,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001597", @@ -131800,7 +142960,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001598", @@ -131820,7 +142982,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001599", @@ -131840,7 +143004,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001600", @@ -131860,7 +143026,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001601", @@ -131880,7 +143048,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001602", @@ -131900,7 +143070,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001603", @@ -131920,7 +143092,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001604", @@ -131940,7 +143114,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E14001605", @@ -131960,7 +143136,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000001", @@ -131980,7 +143158,9 @@ "geography_level": "constituency", "geography_id": "N05000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000002", @@ -132000,7 +143180,9 @@ "geography_level": "constituency", "geography_id": "N05000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000003", @@ -132020,7 +143202,9 @@ "geography_level": "constituency", "geography_id": "N05000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000004", @@ -132040,7 +143224,9 @@ "geography_level": "constituency", "geography_id": "N05000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000005", @@ -132060,7 +143246,9 @@ "geography_level": "constituency", "geography_id": "N05000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000006", @@ -132080,7 +143268,9 @@ "geography_level": "constituency", "geography_id": "N05000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000007", @@ -132100,7 +143290,9 @@ "geography_level": "constituency", "geography_id": "N05000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000008", @@ -132120,7 +143312,9 @@ "geography_level": "constituency", "geography_id": "N05000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000009", @@ -132140,7 +143334,9 @@ "geography_level": "constituency", "geography_id": "N05000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000010", @@ -132160,7 +143356,9 @@ "geography_level": "constituency", "geography_id": "N05000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000011", @@ -132180,7 +143378,9 @@ "geography_level": "constituency", "geography_id": "N05000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000012", @@ -132200,7 +143400,9 @@ "geography_level": "constituency", "geography_id": "N05000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000013", @@ -132220,7 +143422,9 @@ "geography_level": "constituency", "geography_id": "N05000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000014", @@ -132240,7 +143444,9 @@ "geography_level": "constituency", "geography_id": "N05000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000015", @@ -132260,7 +143466,9 @@ "geography_level": "constituency", "geography_id": "N05000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000016", @@ -132280,7 +143488,9 @@ "geography_level": "constituency", "geography_id": "N05000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000017", @@ -132300,7 +143510,9 @@ "geography_level": "constituency", "geography_id": "N05000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N05000018", @@ -132320,7 +143532,9 @@ "geography_level": "constituency", "geography_id": "N05000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000021", @@ -132340,7 +143554,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000027", @@ -132360,7 +143576,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000045", @@ -132380,7 +143598,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000048", @@ -132400,7 +143620,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000051", @@ -132420,7 +143642,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000060", @@ -132440,7 +143664,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000061", @@ -132460,7 +143686,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000062", @@ -132480,7 +143708,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000063", @@ -132500,7 +143730,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000064", @@ -132520,7 +143752,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000065", @@ -132540,7 +143774,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000066", @@ -132560,7 +143796,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000067", @@ -132580,7 +143818,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000068", @@ -132600,7 +143840,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000069", @@ -132620,7 +143862,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000070", @@ -132640,7 +143884,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000071", @@ -132660,7 +143906,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000072", @@ -132680,7 +143928,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000073", @@ -132700,7 +143950,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000074", @@ -132720,7 +143972,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000075", @@ -132740,7 +143994,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000076", @@ -132760,7 +144016,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000077", @@ -132780,7 +144038,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000078", @@ -132800,7 +144060,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000079", @@ -132820,7 +144082,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000080", @@ -132840,7 +144104,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000081", @@ -132860,7 +144126,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000082", @@ -132880,7 +144148,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000083", @@ -132900,7 +144170,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000084", @@ -132920,7 +144192,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000085", @@ -132940,7 +144214,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000086", @@ -132960,7 +144236,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000087", @@ -132980,7 +144258,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000088", @@ -133000,7 +144280,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000089", @@ -133020,7 +144302,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000090", @@ -133040,7 +144324,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000091", @@ -133060,7 +144346,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000092", @@ -133080,7 +144368,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000093", @@ -133100,7 +144390,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000094", @@ -133120,7 +144412,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000095", @@ -133140,7 +144434,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000096", @@ -133160,7 +144456,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000097", @@ -133180,7 +144478,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000098", @@ -133200,7 +144500,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000099", @@ -133220,7 +144522,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000100", @@ -133240,7 +144544,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000101", @@ -133260,7 +144566,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000102", @@ -133280,7 +144588,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000103", @@ -133300,7 +144610,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000104", @@ -133320,7 +144632,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000105", @@ -133340,7 +144654,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000106", @@ -133360,7 +144676,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000107", @@ -133380,7 +144698,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000108", @@ -133400,7 +144720,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000109", @@ -133420,7 +144742,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000110", @@ -133440,7 +144764,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S14000111", @@ -133460,7 +144786,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000081", @@ -133480,7 +144808,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000082", @@ -133500,7 +144830,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000083", @@ -133520,7 +144852,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000084", @@ -133540,7 +144874,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000085", @@ -133560,7 +144896,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000086", @@ -133580,7 +144918,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000087", @@ -133600,7 +144940,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000088", @@ -133620,7 +144962,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000089", @@ -133640,7 +144984,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000090", @@ -133660,7 +145006,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000091", @@ -133680,7 +145028,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000092", @@ -133700,7 +145050,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000093", @@ -133720,7 +145072,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000094", @@ -133740,7 +145094,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000095", @@ -133760,7 +145116,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000096", @@ -133780,7 +145138,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000097", @@ -133800,7 +145160,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000098", @@ -133820,7 +145182,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000099", @@ -133840,7 +145204,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000100", @@ -133860,7 +145226,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000101", @@ -133880,7 +145248,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000102", @@ -133900,7 +145270,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000103", @@ -133920,7 +145292,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000104", @@ -133940,7 +145314,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000105", @@ -133960,7 +145336,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000106", @@ -133980,7 +145358,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000107", @@ -134000,7 +145380,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000108", @@ -134020,7 +145402,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000109", @@ -134040,7 +145424,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000110", @@ -134060,7 +145446,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000111", @@ -134080,7 +145468,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W07000112", @@ -134100,7 +145490,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000001", @@ -134120,7 +145512,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000002", @@ -134140,7 +145534,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000003", @@ -134160,7 +145556,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000004", @@ -134180,7 +145578,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000005", @@ -134200,7 +145600,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000006", @@ -134220,7 +145622,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000007", @@ -134240,7 +145644,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000008", @@ -134260,7 +145666,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000009", @@ -134280,7 +145688,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000010", @@ -134300,7 +145710,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000011", @@ -134320,7 +145732,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000012", @@ -134340,7 +145754,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000013", @@ -134360,7 +145776,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000014", @@ -134380,7 +145798,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000015", @@ -134400,7 +145820,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000016", @@ -134420,7 +145842,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000017", @@ -134440,7 +145864,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000018", @@ -134460,7 +145886,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000019", @@ -134480,7 +145908,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000020", @@ -134500,7 +145930,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000021", @@ -134520,7 +145952,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000022", @@ -134540,7 +145974,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000023", @@ -134560,7 +145996,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000024", @@ -134580,7 +146018,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000025", @@ -134600,7 +146040,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000026", @@ -134620,7 +146062,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000027", @@ -134640,7 +146084,9 @@ "geography_level": "local_authority", "geography_id": "E06000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000030", @@ -134660,7 +146106,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000031", @@ -134680,7 +146128,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000032", @@ -134700,7 +146150,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000033", @@ -134720,7 +146172,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000034", @@ -134740,7 +146194,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000035", @@ -134760,7 +146216,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000036", @@ -134780,7 +146238,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000037", @@ -134800,7 +146260,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000038", @@ -134820,7 +146282,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000039", @@ -134840,7 +146304,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000040", @@ -134860,7 +146326,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000041", @@ -134880,7 +146348,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000042", @@ -134900,7 +146370,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000043", @@ -134920,7 +146392,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000044", @@ -134940,7 +146414,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000045", @@ -134960,7 +146436,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000046", @@ -134980,7 +146458,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000047", @@ -135000,7 +146480,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000049", @@ -135020,7 +146502,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000050", @@ -135040,7 +146524,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000051", @@ -135060,7 +146546,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000052", @@ -135080,7 +146568,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000053", @@ -135100,7 +146590,9 @@ "geography_level": "local_authority", "geography_id": "E06000053" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000054", @@ -135120,7 +146612,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000055", @@ -135140,7 +146634,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000056", @@ -135160,7 +146656,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000057", @@ -135180,7 +146678,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000058", @@ -135200,7 +146700,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000059", @@ -135220,7 +146722,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000060", @@ -135240,7 +146744,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000061", @@ -135260,7 +146766,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000062", @@ -135280,7 +146788,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000063", @@ -135300,7 +146810,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000064", @@ -135320,7 +146832,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000065", @@ -135340,7 +146854,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E06000066", @@ -135360,7 +146876,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000008", @@ -135380,7 +146898,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000009", @@ -135400,7 +146920,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000010", @@ -135420,7 +146942,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000011", @@ -135440,7 +146964,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000012", @@ -135460,7 +146986,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000032", @@ -135480,7 +147008,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000033", @@ -135500,7 +147030,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000034", @@ -135520,7 +147052,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000035", @@ -135540,7 +147074,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000036", @@ -135560,7 +147096,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000037", @@ -135580,7 +147118,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000038", @@ -135600,7 +147140,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000039", @@ -135620,7 +147162,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000040", @@ -135640,7 +147184,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000041", @@ -135660,7 +147206,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000042", @@ -135680,7 +147228,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000043", @@ -135700,7 +147250,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000044", @@ -135720,7 +147272,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000045", @@ -135740,7 +147294,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000046", @@ -135760,7 +147316,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000047", @@ -135780,7 +147338,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000061", @@ -135800,7 +147360,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000062", @@ -135820,7 +147382,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000063", @@ -135840,7 +147404,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000064", @@ -135860,7 +147426,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000065", @@ -135880,7 +147448,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000066", @@ -135900,7 +147470,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000067", @@ -135920,7 +147492,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000068", @@ -135940,7 +147514,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000069", @@ -135960,7 +147536,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000070", @@ -135980,7 +147558,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000071", @@ -136000,7 +147580,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000072", @@ -136020,7 +147602,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000073", @@ -136040,7 +147624,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000074", @@ -136060,7 +147646,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000075", @@ -136080,7 +147668,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000076", @@ -136100,7 +147690,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000077", @@ -136120,7 +147712,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000078", @@ -136140,7 +147734,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000079", @@ -136160,7 +147756,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000080", @@ -136180,7 +147778,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000081", @@ -136200,7 +147800,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000082", @@ -136220,7 +147822,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000083", @@ -136240,7 +147844,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000084", @@ -136260,7 +147866,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000085", @@ -136280,7 +147888,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000086", @@ -136300,7 +147910,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000087", @@ -136320,7 +147932,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000088", @@ -136340,7 +147954,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000089", @@ -136360,7 +147976,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000090", @@ -136380,7 +147998,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000091", @@ -136400,7 +148020,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000092", @@ -136420,7 +148042,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000093", @@ -136440,7 +148064,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000094", @@ -136460,7 +148086,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000095", @@ -136480,7 +148108,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000096", @@ -136500,7 +148130,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000098", @@ -136520,7 +148152,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000099", @@ -136540,7 +148174,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000102", @@ -136560,7 +148196,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000103", @@ -136580,7 +148218,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000105", @@ -136600,7 +148240,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000106", @@ -136620,7 +148262,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000107", @@ -136640,7 +148284,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000108", @@ -136660,7 +148306,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000109", @@ -136680,7 +148328,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000110", @@ -136700,7 +148350,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000111", @@ -136720,7 +148372,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000112", @@ -136740,7 +148394,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000113", @@ -136760,7 +148416,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000114", @@ -136780,7 +148438,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000115", @@ -136800,7 +148460,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000116", @@ -136820,7 +148482,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000117", @@ -136840,7 +148504,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000118", @@ -136860,7 +148526,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000119", @@ -136880,7 +148548,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000120", @@ -136900,7 +148570,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000121", @@ -136920,7 +148592,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000122", @@ -136940,7 +148614,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000123", @@ -136960,7 +148636,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000124", @@ -136980,7 +148658,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000125", @@ -137000,7 +148680,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000126", @@ -137020,7 +148702,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000127", @@ -137040,7 +148724,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000128", @@ -137060,7 +148746,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000129", @@ -137080,7 +148768,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000130", @@ -137100,7 +148790,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000131", @@ -137120,7 +148812,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000132", @@ -137140,7 +148834,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000133", @@ -137160,7 +148856,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000134", @@ -137180,7 +148878,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000135", @@ -137200,7 +148900,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000136", @@ -137220,7 +148922,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000137", @@ -137240,7 +148944,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000138", @@ -137260,7 +148966,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000139", @@ -137280,7 +148988,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000140", @@ -137300,7 +149010,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000141", @@ -137320,7 +149032,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000142", @@ -137340,7 +149054,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000143", @@ -137360,7 +149076,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000144", @@ -137380,7 +149098,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000145", @@ -137400,7 +149120,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000146", @@ -137420,7 +149142,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000147", @@ -137440,7 +149164,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000148", @@ -137460,7 +149186,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000149", @@ -137480,7 +149208,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000170", @@ -137500,7 +149230,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000171", @@ -137520,7 +149252,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000172", @@ -137540,7 +149274,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000173", @@ -137560,7 +149296,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000174", @@ -137580,7 +149318,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000175", @@ -137600,7 +149340,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000176", @@ -137620,7 +149362,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000177", @@ -137640,7 +149384,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000178", @@ -137660,7 +149406,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000179", @@ -137680,7 +149428,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000180", @@ -137700,7 +149450,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000181", @@ -137720,7 +149472,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000192", @@ -137740,7 +149494,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000193", @@ -137760,7 +149516,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000194", @@ -137780,7 +149538,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000195", @@ -137800,7 +149560,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000196", @@ -137820,7 +149582,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000197", @@ -137840,7 +149604,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000198", @@ -137860,7 +149626,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000199", @@ -137880,7 +149648,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000200", @@ -137900,7 +149670,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000202", @@ -137920,7 +149692,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000203", @@ -137940,7 +149714,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000207", @@ -137960,7 +149736,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000208", @@ -137980,7 +149758,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000209", @@ -138000,7 +149780,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000210", @@ -138020,7 +149802,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000211", @@ -138040,7 +149824,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000212", @@ -138060,7 +149846,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000213", @@ -138080,7 +149868,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000214", @@ -138100,7 +149890,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000215", @@ -138120,7 +149912,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000216", @@ -138140,7 +149934,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000217", @@ -138160,7 +149956,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000218", @@ -138180,7 +149978,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000219", @@ -138200,7 +150000,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000220", @@ -138220,7 +150022,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000221", @@ -138240,7 +150044,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000222", @@ -138260,7 +150066,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000223", @@ -138280,7 +150088,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000224", @@ -138300,7 +150110,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000225", @@ -138320,7 +150132,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000226", @@ -138340,7 +150154,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000227", @@ -138360,7 +150176,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000228", @@ -138380,7 +150198,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000229", @@ -138400,7 +150220,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000234", @@ -138420,7 +150242,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000235", @@ -138440,7 +150264,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000236", @@ -138460,7 +150286,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000237", @@ -138480,7 +150308,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000238", @@ -138500,7 +150330,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000239", @@ -138520,7 +150352,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000240", @@ -138540,7 +150374,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000241", @@ -138560,7 +150396,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000242", @@ -138580,7 +150418,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000243", @@ -138600,7 +150440,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000244", @@ -138620,7 +150462,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E07000245", @@ -138640,7 +150484,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000001", @@ -138660,7 +150506,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000002", @@ -138680,7 +150528,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000003", @@ -138700,7 +150550,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000004", @@ -138720,7 +150572,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000005", @@ -138740,7 +150594,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000006", @@ -138760,7 +150616,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000007", @@ -138780,7 +150638,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000008", @@ -138800,7 +150660,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000009", @@ -138820,7 +150682,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000010", @@ -138840,7 +150704,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000011", @@ -138860,7 +150726,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000012", @@ -138880,7 +150748,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000013", @@ -138900,7 +150770,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000014", @@ -138920,7 +150792,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000015", @@ -138940,7 +150814,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000016", @@ -138960,7 +150836,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000017", @@ -138980,7 +150858,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000018", @@ -139000,7 +150880,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000019", @@ -139020,7 +150902,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000021", @@ -139040,7 +150924,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000022", @@ -139060,7 +150946,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000023", @@ -139080,7 +150968,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000024", @@ -139100,7 +150990,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000025", @@ -139120,7 +151012,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000026", @@ -139140,7 +151034,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000027", @@ -139160,7 +151056,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000028", @@ -139180,7 +151078,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000029", @@ -139200,7 +151100,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000030", @@ -139220,7 +151122,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000031", @@ -139240,7 +151144,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000032", @@ -139260,7 +151166,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000033", @@ -139280,7 +151188,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000034", @@ -139300,7 +151210,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000035", @@ -139320,7 +151232,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000036", @@ -139340,7 +151254,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E08000037", @@ -139360,7 +151276,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000001", @@ -139380,7 +151298,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000002", @@ -139400,7 +151320,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000003", @@ -139420,7 +151342,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000004", @@ -139440,7 +151364,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000005", @@ -139460,7 +151386,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000006", @@ -139480,7 +151408,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000007", @@ -139500,7 +151430,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000008", @@ -139520,7 +151452,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000009", @@ -139540,7 +151474,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000010", @@ -139560,7 +151496,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000011", @@ -139580,7 +151518,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000012", @@ -139600,7 +151540,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000013", @@ -139620,7 +151562,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000014", @@ -139640,7 +151584,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000015", @@ -139660,7 +151606,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000016", @@ -139680,7 +151628,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000017", @@ -139700,7 +151650,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000018", @@ -139720,7 +151672,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000019", @@ -139740,7 +151694,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000020", @@ -139760,7 +151716,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000021", @@ -139780,7 +151738,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000022", @@ -139800,7 +151760,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000023", @@ -139820,7 +151782,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000024", @@ -139840,7 +151804,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000025", @@ -139860,7 +151826,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000026", @@ -139880,7 +151848,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000027", @@ -139900,7 +151870,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000028", @@ -139920,7 +151892,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000029", @@ -139940,7 +151914,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000030", @@ -139960,7 +151936,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000031", @@ -139980,7 +151958,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000032", @@ -140000,7 +151980,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@E09000033", @@ -140020,7 +152002,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000001", @@ -140040,7 +152024,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000002", @@ -140060,7 +152046,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000003", @@ -140080,7 +152068,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000004", @@ -140100,7 +152090,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000005", @@ -140120,7 +152112,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000006", @@ -140140,7 +152134,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000007", @@ -140160,7 +152156,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000008", @@ -140180,7 +152178,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000009", @@ -140200,7 +152200,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000010", @@ -140220,7 +152222,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@N09000011", @@ -140240,7 +152244,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000005", @@ -140260,7 +152266,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000006", @@ -140280,7 +152288,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000008", @@ -140300,7 +152310,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000010", @@ -140320,7 +152332,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000011", @@ -140340,7 +152354,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000013", @@ -140360,7 +152376,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000014", @@ -140380,7 +152398,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000017", @@ -140400,7 +152420,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000018", @@ -140420,7 +152442,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000019", @@ -140440,7 +152464,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000020", @@ -140460,7 +152486,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000021", @@ -140480,7 +152508,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000023", @@ -140500,7 +152530,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000026", @@ -140520,7 +152552,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000027", @@ -140540,7 +152574,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000028", @@ -140560,7 +152596,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000029", @@ -140580,7 +152618,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000030", @@ -140600,7 +152640,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000033", @@ -140620,7 +152662,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000034", @@ -140640,7 +152684,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000035", @@ -140660,7 +152706,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000036", @@ -140680,7 +152728,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000038", @@ -140700,7 +152750,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000039", @@ -140720,7 +152772,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000040", @@ -140740,7 +152794,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000041", @@ -140760,7 +152816,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000042", @@ -140780,7 +152838,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000045", @@ -140800,7 +152860,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000047", @@ -140820,7 +152882,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000048", @@ -140840,7 +152904,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000049", @@ -140860,7 +152926,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@S12000050", @@ -140880,7 +152948,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000001", @@ -140900,7 +152970,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000002", @@ -140920,7 +152992,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000003", @@ -140940,7 +153014,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000004", @@ -140960,7 +153036,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000005", @@ -140980,7 +153058,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000006", @@ -141000,7 +153080,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000008", @@ -141020,7 +153102,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000009", @@ -141040,7 +153124,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000010", @@ -141060,7 +153146,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000011", @@ -141080,7 +153168,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000012", @@ -141100,7 +153190,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000013", @@ -141120,7 +153212,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000014", @@ -141140,7 +153234,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000015", @@ -141160,7 +153256,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000016", @@ -141180,7 +153278,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000018", @@ -141200,7 +153300,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000019", @@ -141220,7 +153322,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000020", @@ -141240,7 +153344,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000021", @@ -141260,7 +153366,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000022", @@ -141280,7 +153388,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000023", @@ -141300,7 +153410,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.10_20@W06000024", @@ -141320,7 +153432,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001063", @@ -141340,7 +153454,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001064", @@ -141360,7 +153476,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001065", @@ -141380,7 +153498,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001066", @@ -141400,7 +153520,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001067", @@ -141420,7 +153542,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001068", @@ -141440,7 +153564,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001069", @@ -141460,7 +153586,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001070", @@ -141480,7 +153608,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001071", @@ -141500,7 +153630,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001072", @@ -141520,7 +153652,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001073", @@ -141540,7 +153674,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001074", @@ -141560,7 +153696,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001075", @@ -141580,7 +153718,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001076", @@ -141600,7 +153740,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001077", @@ -141620,7 +153762,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001078", @@ -141640,7 +153784,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001079", @@ -141660,7 +153806,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001080", @@ -141680,7 +153828,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001081", @@ -141700,7 +153850,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001082", @@ -141720,7 +153872,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001083", @@ -141740,7 +153894,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001084", @@ -141760,7 +153916,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001085", @@ -141780,7 +153938,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001086", @@ -141800,7 +153960,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001087", @@ -141820,7 +153982,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001088", @@ -141840,7 +154004,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001089", @@ -141860,7 +154026,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001090", @@ -141880,7 +154048,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001091", @@ -141900,7 +154070,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001092", @@ -141920,7 +154092,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001093", @@ -141940,7 +154114,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001094", @@ -141960,7 +154136,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001095", @@ -141980,7 +154158,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001096", @@ -142000,7 +154180,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001097", @@ -142020,7 +154202,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001098", @@ -142040,7 +154224,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001099", @@ -142060,7 +154246,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001100", @@ -142080,7 +154268,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001101", @@ -142100,7 +154290,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001102", @@ -142120,7 +154312,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001103", @@ -142140,7 +154334,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001104", @@ -142160,7 +154356,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001105", @@ -142180,7 +154378,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001106", @@ -142200,7 +154400,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001107", @@ -142220,7 +154422,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001108", @@ -142240,7 +154444,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001109", @@ -142260,7 +154466,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001110", @@ -142280,7 +154488,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001111", @@ -142300,7 +154510,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001112", @@ -142320,7 +154532,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001113", @@ -142340,7 +154554,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001114", @@ -142360,7 +154576,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001115", @@ -142380,7 +154598,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001116", @@ -142400,7 +154620,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001117", @@ -142420,7 +154642,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001118", @@ -142440,7 +154664,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001119", @@ -142460,7 +154686,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001120", @@ -142480,7 +154708,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001121", @@ -142500,7 +154730,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001122", @@ -142520,7 +154752,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001123", @@ -142540,7 +154774,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001124", @@ -142560,7 +154796,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001125", @@ -142580,7 +154818,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001126", @@ -142600,7 +154840,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001127", @@ -142620,7 +154862,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001128", @@ -142640,7 +154884,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001129", @@ -142660,7 +154906,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001130", @@ -142680,7 +154928,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001131", @@ -142700,7 +154950,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001132", @@ -142720,7 +154972,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001133", @@ -142740,7 +154994,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001134", @@ -142760,7 +155016,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001135", @@ -142780,7 +155038,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001136", @@ -142800,7 +155060,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001137", @@ -142820,7 +155082,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001138", @@ -142840,7 +155104,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001139", @@ -142860,7 +155126,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001140", @@ -142880,7 +155148,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001141", @@ -142900,7 +155170,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001142", @@ -142920,7 +155192,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001143", @@ -142940,7 +155214,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001144", @@ -142960,7 +155236,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001145", @@ -142980,7 +155258,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001146", @@ -143000,7 +155280,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001147", @@ -143020,7 +155302,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001148", @@ -143040,7 +155324,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001149", @@ -143060,7 +155346,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001150", @@ -143080,7 +155368,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001151", @@ -143100,7 +155390,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001152", @@ -143120,7 +155412,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001153", @@ -143140,7 +155434,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001154", @@ -143160,7 +155456,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001155", @@ -143180,7 +155478,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001156", @@ -143200,7 +155500,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001157", @@ -143220,7 +155522,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001158", @@ -143240,7 +155544,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001159", @@ -143260,7 +155566,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001160", @@ -143280,7 +155588,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001161", @@ -143300,7 +155610,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001162", @@ -143320,7 +155632,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001163", @@ -143340,7 +155654,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001164", @@ -143360,7 +155676,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001165", @@ -143380,7 +155698,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001166", @@ -143400,7 +155720,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001167", @@ -143420,7 +155742,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001168", @@ -143440,7 +155764,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001169", @@ -143460,7 +155786,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001170", @@ -143480,7 +155808,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001171", @@ -143500,7 +155830,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001172", @@ -143520,7 +155852,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001173", @@ -143540,7 +155874,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001174", @@ -143560,7 +155896,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001175", @@ -143580,7 +155918,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001176", @@ -143600,7 +155940,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001177", @@ -143620,7 +155962,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001178", @@ -143640,7 +155984,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001179", @@ -143660,7 +156006,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001180", @@ -143680,7 +156028,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001181", @@ -143700,7 +156050,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001182", @@ -143720,7 +156072,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001183", @@ -143740,7 +156094,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001184", @@ -143760,7 +156116,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001185", @@ -143780,7 +156138,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001186", @@ -143800,7 +156160,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001187", @@ -143820,7 +156182,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001188", @@ -143840,7 +156204,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001189", @@ -143860,7 +156226,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001190", @@ -143880,7 +156248,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001191", @@ -143900,7 +156270,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001192", @@ -143920,7 +156292,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001193", @@ -143940,7 +156314,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001194", @@ -143960,7 +156336,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001195", @@ -143980,7 +156358,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001196", @@ -144000,7 +156380,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001197", @@ -144020,7 +156402,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001198", @@ -144040,7 +156424,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001199", @@ -144060,7 +156446,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001200", @@ -144080,7 +156468,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001201", @@ -144100,7 +156490,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001202", @@ -144120,7 +156512,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001203", @@ -144140,7 +156534,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001204", @@ -144160,7 +156556,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001205", @@ -144180,7 +156578,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001206", @@ -144200,7 +156600,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001207", @@ -144220,7 +156622,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001208", @@ -144240,7 +156644,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001209", @@ -144260,7 +156666,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001210", @@ -144280,7 +156688,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001211", @@ -144300,7 +156710,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001212", @@ -144320,7 +156732,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001213", @@ -144340,7 +156754,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001214", @@ -144360,7 +156776,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001215", @@ -144380,7 +156798,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001216", @@ -144400,7 +156820,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001217", @@ -144420,7 +156842,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001218", @@ -144440,7 +156864,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001219", @@ -144460,7 +156886,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001220", @@ -144480,7 +156908,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001221", @@ -144500,7 +156930,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001222", @@ -144520,7 +156952,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001223", @@ -144540,7 +156974,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001224", @@ -144560,7 +156996,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001225", @@ -144580,7 +157018,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001226", @@ -144600,7 +157040,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001227", @@ -144620,7 +157062,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001228", @@ -144640,7 +157084,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001229", @@ -144660,7 +157106,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001230", @@ -144680,7 +157128,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001231", @@ -144700,7 +157150,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001232", @@ -144720,7 +157172,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001233", @@ -144740,7 +157194,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001234", @@ -144760,7 +157216,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001235", @@ -144780,7 +157238,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001236", @@ -144800,7 +157260,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001237", @@ -144820,7 +157282,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001238", @@ -144840,7 +157304,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001239", @@ -144860,7 +157326,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001240", @@ -144880,7 +157348,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001241", @@ -144900,7 +157370,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001242", @@ -144920,7 +157392,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001243", @@ -144940,7 +157414,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001244", @@ -144960,7 +157436,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001245", @@ -144980,7 +157458,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001246", @@ -145000,7 +157480,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001247", @@ -145020,7 +157502,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001248", @@ -145040,7 +157524,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001249", @@ -145060,7 +157546,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001250", @@ -145080,7 +157568,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001251", @@ -145100,7 +157590,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001252", @@ -145120,7 +157612,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001253", @@ -145140,7 +157634,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001254", @@ -145160,7 +157656,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001255", @@ -145180,7 +157678,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001256", @@ -145200,7 +157700,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001257", @@ -145220,7 +157722,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001258", @@ -145240,7 +157744,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001259", @@ -145260,7 +157766,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001260", @@ -145280,7 +157788,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001261", @@ -145300,7 +157810,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001262", @@ -145320,7 +157832,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001263", @@ -145340,7 +157854,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001264", @@ -145360,7 +157876,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001265", @@ -145380,7 +157898,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001266", @@ -145400,7 +157920,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001267", @@ -145420,7 +157942,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001268", @@ -145440,7 +157964,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001269", @@ -145460,7 +157986,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001270", @@ -145480,7 +158008,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001271", @@ -145500,7 +158030,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001272", @@ -145520,7 +158052,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001273", @@ -145540,7 +158074,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001274", @@ -145560,7 +158096,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001275", @@ -145580,7 +158118,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001276", @@ -145600,7 +158140,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001277", @@ -145620,7 +158162,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001278", @@ -145640,7 +158184,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001279", @@ -145660,7 +158206,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001280", @@ -145680,7 +158228,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001281", @@ -145700,7 +158250,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001282", @@ -145720,7 +158272,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001283", @@ -145740,7 +158294,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001284", @@ -145760,7 +158316,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001285", @@ -145780,7 +158338,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001286", @@ -145800,7 +158360,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001287", @@ -145820,7 +158382,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001288", @@ -145840,7 +158404,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001289", @@ -145860,7 +158426,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001290", @@ -145880,7 +158448,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001291", @@ -145900,7 +158470,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001292", @@ -145920,7 +158492,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001293", @@ -145940,7 +158514,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001294", @@ -145960,7 +158536,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001295", @@ -145980,7 +158558,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001296", @@ -146000,7 +158580,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001297", @@ -146020,7 +158602,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001298", @@ -146040,7 +158624,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001299", @@ -146060,7 +158646,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001300", @@ -146080,7 +158668,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001301", @@ -146100,7 +158690,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001302", @@ -146120,7 +158712,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001303", @@ -146140,7 +158734,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001304", @@ -146160,7 +158756,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001305", @@ -146180,7 +158778,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001306", @@ -146200,7 +158800,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001307", @@ -146220,7 +158822,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001308", @@ -146240,7 +158844,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001309", @@ -146260,7 +158866,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001310", @@ -146280,7 +158888,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001311", @@ -146300,7 +158910,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001312", @@ -146320,7 +158932,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001313", @@ -146340,7 +158954,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001314", @@ -146360,7 +158976,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001315", @@ -146380,7 +158998,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001316", @@ -146400,7 +159020,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001317", @@ -146420,7 +159042,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001318", @@ -146440,7 +159064,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001319", @@ -146460,7 +159086,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001320", @@ -146480,7 +159108,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001321", @@ -146500,7 +159130,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001322", @@ -146520,7 +159152,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001323", @@ -146540,7 +159174,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001324", @@ -146560,7 +159196,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001325", @@ -146580,7 +159218,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001326", @@ -146600,7 +159240,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001327", @@ -146620,7 +159262,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001328", @@ -146640,7 +159284,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001329", @@ -146660,7 +159306,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001330", @@ -146680,7 +159328,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001331", @@ -146700,7 +159350,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001332", @@ -146720,7 +159372,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001333", @@ -146740,7 +159394,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001334", @@ -146760,7 +159416,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001335", @@ -146780,7 +159438,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001336", @@ -146800,7 +159460,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001337", @@ -146820,7 +159482,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001338", @@ -146840,7 +159504,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001339", @@ -146860,7 +159526,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001340", @@ -146880,7 +159548,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001341", @@ -146900,7 +159570,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001342", @@ -146920,7 +159592,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001343", @@ -146940,7 +159614,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001344", @@ -146960,7 +159636,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001345", @@ -146980,7 +159658,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001346", @@ -147000,7 +159680,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001347", @@ -147020,7 +159702,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001348", @@ -147040,7 +159724,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001349", @@ -147060,7 +159746,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001350", @@ -147080,7 +159768,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001351", @@ -147100,7 +159790,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001352", @@ -147120,7 +159812,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001353", @@ -147140,7 +159834,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001354", @@ -147160,7 +159856,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001355", @@ -147180,7 +159878,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001356", @@ -147200,7 +159900,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001357", @@ -147220,7 +159922,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001358", @@ -147240,7 +159944,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001359", @@ -147260,7 +159966,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001360", @@ -147280,7 +159988,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001361", @@ -147300,7 +160010,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001362", @@ -147320,7 +160032,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001363", @@ -147340,7 +160054,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001364", @@ -147360,7 +160076,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001365", @@ -147380,7 +160098,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001366", @@ -147400,7 +160120,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001367", @@ -147420,7 +160142,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001368", @@ -147440,7 +160164,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001369", @@ -147460,7 +160186,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001370", @@ -147480,7 +160208,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001371", @@ -147500,7 +160230,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001372", @@ -147520,7 +160252,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001373", @@ -147540,7 +160274,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001374", @@ -147560,7 +160296,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001375", @@ -147580,7 +160318,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001376", @@ -147600,7 +160340,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001377", @@ -147620,7 +160362,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001378", @@ -147640,7 +160384,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001379", @@ -147660,7 +160406,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001380", @@ -147680,7 +160428,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001381", @@ -147700,7 +160450,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001382", @@ -147720,7 +160472,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001383", @@ -147740,7 +160494,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001384", @@ -147760,7 +160516,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001385", @@ -147780,7 +160538,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001386", @@ -147800,7 +160560,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001387", @@ -147820,7 +160582,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001388", @@ -147840,7 +160604,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001389", @@ -147860,7 +160626,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001390", @@ -147880,7 +160648,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001391", @@ -147900,7 +160670,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001392", @@ -147920,7 +160692,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001393", @@ -147940,7 +160714,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001394", @@ -147960,7 +160736,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001395", @@ -147980,7 +160758,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001396", @@ -148000,7 +160780,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001397", @@ -148020,7 +160802,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001398", @@ -148040,7 +160824,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001399", @@ -148060,7 +160846,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001400", @@ -148080,7 +160868,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001401", @@ -148100,7 +160890,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001402", @@ -148120,7 +160912,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001403", @@ -148140,7 +160934,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001404", @@ -148160,7 +160956,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001405", @@ -148180,7 +160978,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001406", @@ -148200,7 +161000,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001407", @@ -148220,7 +161022,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001408", @@ -148240,7 +161044,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001409", @@ -148260,7 +161066,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001410", @@ -148280,7 +161088,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001411", @@ -148300,7 +161110,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001412", @@ -148320,7 +161132,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001413", @@ -148340,7 +161154,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001414", @@ -148360,7 +161176,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001415", @@ -148380,7 +161198,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001416", @@ -148400,7 +161220,9 @@ "geography_level": "constituency", "geography_id": "E14001416" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001417", @@ -148420,7 +161242,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001418", @@ -148440,7 +161264,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001419", @@ -148460,7 +161286,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001420", @@ -148480,7 +161308,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001421", @@ -148500,7 +161330,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001422", @@ -148520,7 +161352,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001423", @@ -148540,7 +161374,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001424", @@ -148560,7 +161396,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001425", @@ -148580,7 +161418,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001426", @@ -148600,7 +161440,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001427", @@ -148620,7 +161462,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001428", @@ -148640,7 +161484,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001429", @@ -148660,7 +161506,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001430", @@ -148680,7 +161528,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001431", @@ -148700,7 +161550,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001432", @@ -148720,7 +161572,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001433", @@ -148740,7 +161594,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001434", @@ -148760,7 +161616,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001435", @@ -148780,7 +161638,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001436", @@ -148800,7 +161660,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001437", @@ -148820,7 +161682,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001438", @@ -148840,7 +161704,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001439", @@ -148860,7 +161726,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001440", @@ -148880,7 +161748,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001441", @@ -148900,7 +161770,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001442", @@ -148920,7 +161792,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001443", @@ -148940,7 +161814,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001444", @@ -148960,7 +161836,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001445", @@ -148980,7 +161858,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001446", @@ -149000,7 +161880,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001447", @@ -149020,7 +161902,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001448", @@ -149040,7 +161924,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001449", @@ -149060,7 +161946,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001450", @@ -149080,7 +161968,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001451", @@ -149100,7 +161990,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001452", @@ -149120,7 +162012,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001453", @@ -149140,7 +162034,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001454", @@ -149160,7 +162056,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001455", @@ -149180,7 +162078,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001456", @@ -149200,7 +162100,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001457", @@ -149220,7 +162122,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001458", @@ -149240,7 +162144,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001459", @@ -149260,7 +162166,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001460", @@ -149280,7 +162188,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001461", @@ -149300,7 +162210,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001462", @@ -149320,7 +162232,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001463", @@ -149340,7 +162254,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001464", @@ -149360,7 +162276,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001465", @@ -149380,7 +162298,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001466", @@ -149400,7 +162320,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001467", @@ -149420,7 +162342,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001468", @@ -149440,7 +162364,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001469", @@ -149460,7 +162386,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001470", @@ -149480,7 +162408,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001471", @@ -149500,7 +162430,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001472", @@ -149520,7 +162452,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001473", @@ -149540,7 +162474,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001474", @@ -149560,7 +162496,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001475", @@ -149580,7 +162518,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001476", @@ -149600,7 +162540,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001477", @@ -149620,7 +162562,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001478", @@ -149640,7 +162584,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001479", @@ -149660,7 +162606,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001480", @@ -149680,7 +162628,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001481", @@ -149700,7 +162650,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001482", @@ -149720,7 +162672,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001483", @@ -149740,7 +162694,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001484", @@ -149760,7 +162716,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001485", @@ -149780,7 +162738,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001486", @@ -149800,7 +162760,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001487", @@ -149820,7 +162782,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001488", @@ -149840,7 +162804,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001489", @@ -149860,7 +162826,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001490", @@ -149880,7 +162848,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001491", @@ -149900,7 +162870,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001492", @@ -149920,7 +162892,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001493", @@ -149940,7 +162914,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001494", @@ -149960,7 +162936,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001495", @@ -149980,7 +162958,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001496", @@ -150000,7 +162980,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001497", @@ -150020,7 +163002,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001498", @@ -150040,7 +163024,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001499", @@ -150060,7 +163046,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001500", @@ -150080,7 +163068,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001501", @@ -150100,7 +163090,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001502", @@ -150120,7 +163112,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001503", @@ -150140,7 +163134,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001504", @@ -150160,7 +163156,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001505", @@ -150180,7 +163178,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001506", @@ -150200,7 +163200,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001507", @@ -150220,7 +163222,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001508", @@ -150240,7 +163244,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001509", @@ -150260,7 +163266,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001510", @@ -150280,7 +163288,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001511", @@ -150300,7 +163310,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001512", @@ -150320,7 +163332,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001513", @@ -150340,7 +163354,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001514", @@ -150360,7 +163376,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001515", @@ -150380,7 +163398,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001516", @@ -150400,7 +163420,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001517", @@ -150420,7 +163442,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001518", @@ -150440,7 +163464,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001519", @@ -150460,7 +163486,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001520", @@ -150480,7 +163508,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001521", @@ -150500,7 +163530,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001522", @@ -150520,7 +163552,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001523", @@ -150540,7 +163574,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001524", @@ -150560,7 +163596,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001525", @@ -150580,7 +163618,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001526", @@ -150600,7 +163640,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001527", @@ -150620,7 +163662,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001528", @@ -150640,7 +163684,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001529", @@ -150660,7 +163706,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001530", @@ -150680,7 +163728,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001531", @@ -150700,7 +163750,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001532", @@ -150720,7 +163772,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001533", @@ -150740,7 +163794,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001534", @@ -150760,7 +163816,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001535", @@ -150780,7 +163838,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001536", @@ -150800,7 +163860,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001537", @@ -150820,7 +163882,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001538", @@ -150840,7 +163904,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001539", @@ -150860,7 +163926,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001540", @@ -150880,7 +163948,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001541", @@ -150900,7 +163970,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001542", @@ -150920,7 +163992,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001543", @@ -150940,7 +164014,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001544", @@ -150960,7 +164036,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001545", @@ -150980,7 +164058,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001546", @@ -151000,7 +164080,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001547", @@ -151020,7 +164102,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001548", @@ -151040,7 +164124,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001549", @@ -151060,7 +164146,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001550", @@ -151080,7 +164168,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001551", @@ -151100,7 +164190,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001552", @@ -151120,7 +164212,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001553", @@ -151140,7 +164234,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001554", @@ -151160,7 +164256,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001555", @@ -151180,7 +164278,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001556", @@ -151200,7 +164300,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001557", @@ -151220,7 +164322,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001558", @@ -151240,7 +164344,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001559", @@ -151260,7 +164366,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001560", @@ -151280,7 +164388,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001561", @@ -151300,7 +164410,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001562", @@ -151320,7 +164432,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001563", @@ -151340,7 +164454,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001564", @@ -151360,7 +164476,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001565", @@ -151380,7 +164498,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001566", @@ -151400,7 +164520,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001567", @@ -151420,7 +164542,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001568", @@ -151440,7 +164564,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001569", @@ -151460,7 +164586,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001570", @@ -151480,7 +164608,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001571", @@ -151500,7 +164630,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001572", @@ -151520,7 +164652,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001573", @@ -151540,7 +164674,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001574", @@ -151560,7 +164696,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001575", @@ -151580,7 +164718,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001576", @@ -151600,7 +164740,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001577", @@ -151620,7 +164762,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001578", @@ -151640,7 +164784,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001579", @@ -151660,7 +164806,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001580", @@ -151680,7 +164828,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001581", @@ -151700,7 +164850,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001582", @@ -151720,7 +164872,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001583", @@ -151740,7 +164894,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001584", @@ -151760,7 +164916,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001585", @@ -151780,7 +164938,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001586", @@ -151800,7 +164960,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001587", @@ -151820,7 +164982,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001588", @@ -151840,7 +165004,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001589", @@ -151860,7 +165026,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001590", @@ -151880,7 +165048,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001591", @@ -151900,7 +165070,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001592", @@ -151920,7 +165092,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001593", @@ -151940,7 +165114,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001594", @@ -151960,7 +165136,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001595", @@ -151980,7 +165158,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001596", @@ -152000,7 +165180,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001597", @@ -152020,7 +165202,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001598", @@ -152040,7 +165224,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001599", @@ -152060,7 +165246,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001600", @@ -152080,7 +165268,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001601", @@ -152100,7 +165290,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001602", @@ -152120,7 +165312,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001603", @@ -152140,7 +165334,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001604", @@ -152160,7 +165356,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E14001605", @@ -152180,7 +165378,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000001", @@ -152200,7 +165400,9 @@ "geography_level": "constituency", "geography_id": "N05000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000002", @@ -152220,7 +165422,9 @@ "geography_level": "constituency", "geography_id": "N05000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000003", @@ -152240,7 +165444,9 @@ "geography_level": "constituency", "geography_id": "N05000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000004", @@ -152260,7 +165466,9 @@ "geography_level": "constituency", "geography_id": "N05000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000005", @@ -152280,7 +165488,9 @@ "geography_level": "constituency", "geography_id": "N05000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000006", @@ -152300,7 +165510,9 @@ "geography_level": "constituency", "geography_id": "N05000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000007", @@ -152320,7 +165532,9 @@ "geography_level": "constituency", "geography_id": "N05000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000008", @@ -152340,7 +165554,9 @@ "geography_level": "constituency", "geography_id": "N05000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000009", @@ -152360,7 +165576,9 @@ "geography_level": "constituency", "geography_id": "N05000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000010", @@ -152380,7 +165598,9 @@ "geography_level": "constituency", "geography_id": "N05000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000011", @@ -152400,7 +165620,9 @@ "geography_level": "constituency", "geography_id": "N05000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000012", @@ -152420,7 +165642,9 @@ "geography_level": "constituency", "geography_id": "N05000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000013", @@ -152440,7 +165664,9 @@ "geography_level": "constituency", "geography_id": "N05000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000014", @@ -152460,7 +165686,9 @@ "geography_level": "constituency", "geography_id": "N05000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000015", @@ -152480,7 +165708,9 @@ "geography_level": "constituency", "geography_id": "N05000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000016", @@ -152500,7 +165730,9 @@ "geography_level": "constituency", "geography_id": "N05000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000017", @@ -152520,7 +165752,9 @@ "geography_level": "constituency", "geography_id": "N05000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N05000018", @@ -152540,7 +165774,9 @@ "geography_level": "constituency", "geography_id": "N05000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000021", @@ -152560,7 +165796,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000027", @@ -152580,7 +165818,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000045", @@ -152600,7 +165840,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000048", @@ -152620,7 +165862,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000051", @@ -152640,7 +165884,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000060", @@ -152660,7 +165906,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000061", @@ -152680,7 +165928,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000062", @@ -152700,7 +165950,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000063", @@ -152720,7 +165972,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000064", @@ -152740,7 +165994,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000065", @@ -152760,7 +166016,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000066", @@ -152780,7 +166038,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000067", @@ -152800,7 +166060,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000068", @@ -152820,7 +166082,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000069", @@ -152840,7 +166104,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000070", @@ -152860,7 +166126,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000071", @@ -152880,7 +166148,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000072", @@ -152900,7 +166170,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000073", @@ -152920,7 +166192,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000074", @@ -152940,7 +166214,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000075", @@ -152960,7 +166236,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000076", @@ -152980,7 +166258,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000077", @@ -153000,7 +166280,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000078", @@ -153020,7 +166302,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000079", @@ -153040,7 +166324,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000080", @@ -153060,7 +166346,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000081", @@ -153080,7 +166368,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000082", @@ -153100,7 +166390,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000083", @@ -153120,7 +166412,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000084", @@ -153140,7 +166434,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000085", @@ -153160,7 +166456,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000086", @@ -153180,7 +166478,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000087", @@ -153200,7 +166500,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000088", @@ -153220,7 +166522,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000089", @@ -153240,7 +166544,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000090", @@ -153260,7 +166566,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000091", @@ -153280,7 +166588,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000092", @@ -153300,7 +166610,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000093", @@ -153320,7 +166632,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000094", @@ -153340,7 +166654,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000095", @@ -153360,7 +166676,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000096", @@ -153380,7 +166698,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000097", @@ -153400,7 +166720,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000098", @@ -153420,7 +166742,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000099", @@ -153440,7 +166764,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000100", @@ -153460,7 +166786,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000101", @@ -153480,7 +166808,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000102", @@ -153500,7 +166830,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000103", @@ -153520,7 +166852,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000104", @@ -153540,7 +166874,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000105", @@ -153560,7 +166896,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000106", @@ -153580,7 +166918,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000107", @@ -153600,7 +166940,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000108", @@ -153620,7 +166962,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000109", @@ -153640,7 +166984,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000110", @@ -153660,7 +167006,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S14000111", @@ -153680,7 +167028,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000081", @@ -153700,7 +167050,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000082", @@ -153720,7 +167072,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000083", @@ -153740,7 +167094,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000084", @@ -153760,7 +167116,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000085", @@ -153780,7 +167138,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000086", @@ -153800,7 +167160,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000087", @@ -153820,7 +167182,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000088", @@ -153840,7 +167204,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000089", @@ -153860,7 +167226,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000090", @@ -153880,7 +167248,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000091", @@ -153900,7 +167270,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000092", @@ -153920,7 +167292,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000093", @@ -153940,7 +167314,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000094", @@ -153960,7 +167336,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000095", @@ -153980,7 +167358,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000096", @@ -154000,7 +167380,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000097", @@ -154020,7 +167402,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000098", @@ -154040,7 +167424,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000099", @@ -154060,7 +167446,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000100", @@ -154080,7 +167468,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000101", @@ -154100,7 +167490,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000102", @@ -154120,7 +167512,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000103", @@ -154140,7 +167534,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000104", @@ -154160,7 +167556,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000105", @@ -154180,7 +167578,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000106", @@ -154200,7 +167600,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000107", @@ -154220,7 +167622,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000108", @@ -154240,7 +167644,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000109", @@ -154260,7 +167666,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000110", @@ -154280,7 +167688,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000111", @@ -154300,7 +167710,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W07000112", @@ -154320,7 +167732,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000001", @@ -154340,7 +167754,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000002", @@ -154360,7 +167776,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000003", @@ -154380,7 +167798,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000004", @@ -154400,7 +167820,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000005", @@ -154420,7 +167842,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000006", @@ -154440,7 +167864,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000007", @@ -154460,7 +167886,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000008", @@ -154480,7 +167908,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000009", @@ -154500,7 +167930,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000010", @@ -154520,7 +167952,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000011", @@ -154540,7 +167974,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000012", @@ -154560,7 +167996,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000013", @@ -154580,7 +168018,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000014", @@ -154600,7 +168040,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000015", @@ -154620,7 +168062,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000016", @@ -154640,7 +168084,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000017", @@ -154660,7 +168106,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000018", @@ -154680,7 +168128,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000019", @@ -154700,7 +168150,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000020", @@ -154720,7 +168172,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000021", @@ -154740,7 +168194,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000022", @@ -154760,7 +168216,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000023", @@ -154780,7 +168238,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000024", @@ -154800,7 +168260,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000025", @@ -154820,7 +168282,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000026", @@ -154840,7 +168304,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000027", @@ -154860,7 +168326,9 @@ "geography_level": "local_authority", "geography_id": "E06000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000030", @@ -154880,7 +168348,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000031", @@ -154900,7 +168370,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000032", @@ -154920,7 +168392,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000033", @@ -154940,7 +168414,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000034", @@ -154960,7 +168436,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000035", @@ -154980,7 +168458,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000036", @@ -155000,7 +168480,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000037", @@ -155020,7 +168502,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000038", @@ -155040,7 +168524,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000039", @@ -155060,7 +168546,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000040", @@ -155080,7 +168568,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000041", @@ -155100,7 +168590,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000042", @@ -155120,7 +168612,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000043", @@ -155140,7 +168634,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000044", @@ -155160,7 +168656,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000045", @@ -155180,7 +168678,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000046", @@ -155200,7 +168700,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000047", @@ -155220,7 +168722,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000049", @@ -155240,7 +168744,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000050", @@ -155260,7 +168766,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000051", @@ -155280,7 +168788,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000052", @@ -155300,7 +168810,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000053", @@ -155320,7 +168832,9 @@ "geography_level": "local_authority", "geography_id": "E06000053" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000054", @@ -155340,7 +168854,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000055", @@ -155360,7 +168876,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000056", @@ -155380,7 +168898,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000057", @@ -155400,7 +168920,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000058", @@ -155420,7 +168942,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000059", @@ -155440,7 +168964,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000060", @@ -155460,7 +168986,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000061", @@ -155480,7 +169008,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000062", @@ -155500,7 +169030,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000063", @@ -155520,7 +169052,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000064", @@ -155540,7 +169074,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000065", @@ -155560,7 +169096,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E06000066", @@ -155580,7 +169118,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000008", @@ -155600,7 +169140,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000009", @@ -155620,7 +169162,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000010", @@ -155640,7 +169184,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000011", @@ -155660,7 +169206,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000012", @@ -155680,7 +169228,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000032", @@ -155700,7 +169250,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000033", @@ -155720,7 +169272,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000034", @@ -155740,7 +169294,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000035", @@ -155760,7 +169316,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000036", @@ -155780,7 +169338,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000037", @@ -155800,7 +169360,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000038", @@ -155820,7 +169382,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000039", @@ -155840,7 +169404,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000040", @@ -155860,7 +169426,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000041", @@ -155880,7 +169448,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000042", @@ -155900,7 +169470,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000043", @@ -155920,7 +169492,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000044", @@ -155940,7 +169514,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000045", @@ -155960,7 +169536,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000046", @@ -155980,7 +169558,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000047", @@ -156000,7 +169580,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000061", @@ -156020,7 +169602,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000062", @@ -156040,7 +169624,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000063", @@ -156060,7 +169646,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000064", @@ -156080,7 +169668,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000065", @@ -156100,7 +169690,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000066", @@ -156120,7 +169712,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000067", @@ -156140,7 +169734,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000068", @@ -156160,7 +169756,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000069", @@ -156180,7 +169778,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000070", @@ -156200,7 +169800,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000071", @@ -156220,7 +169822,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000072", @@ -156240,7 +169844,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000073", @@ -156260,7 +169866,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000074", @@ -156280,7 +169888,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000075", @@ -156300,7 +169910,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000076", @@ -156320,7 +169932,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000077", @@ -156340,7 +169954,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000078", @@ -156360,7 +169976,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000079", @@ -156380,7 +169998,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000080", @@ -156400,7 +170020,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000081", @@ -156420,7 +170042,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000082", @@ -156440,7 +170064,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000083", @@ -156460,7 +170086,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000084", @@ -156480,7 +170108,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000085", @@ -156500,7 +170130,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000086", @@ -156520,7 +170152,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000087", @@ -156540,7 +170174,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000088", @@ -156560,7 +170196,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000089", @@ -156580,7 +170218,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000090", @@ -156600,7 +170240,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000091", @@ -156620,7 +170262,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000092", @@ -156640,7 +170284,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000093", @@ -156660,7 +170306,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000094", @@ -156680,7 +170328,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000095", @@ -156700,7 +170350,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000096", @@ -156720,7 +170372,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000098", @@ -156740,7 +170394,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000099", @@ -156760,7 +170416,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000102", @@ -156780,7 +170438,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000103", @@ -156800,7 +170460,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000105", @@ -156820,7 +170482,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000106", @@ -156840,7 +170504,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000107", @@ -156860,7 +170526,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000108", @@ -156880,7 +170548,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000109", @@ -156900,7 +170570,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000110", @@ -156920,7 +170592,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000111", @@ -156940,7 +170614,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000112", @@ -156960,7 +170636,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000113", @@ -156980,7 +170658,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000114", @@ -157000,7 +170680,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000115", @@ -157020,7 +170702,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000116", @@ -157040,7 +170724,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000117", @@ -157060,7 +170746,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000118", @@ -157080,7 +170768,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000119", @@ -157100,7 +170790,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000120", @@ -157120,7 +170812,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000121", @@ -157140,7 +170834,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000122", @@ -157160,7 +170856,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000123", @@ -157180,7 +170878,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000124", @@ -157200,7 +170900,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000125", @@ -157220,7 +170922,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000126", @@ -157240,7 +170944,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000127", @@ -157260,7 +170966,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000128", @@ -157280,7 +170988,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000129", @@ -157300,7 +171010,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000130", @@ -157320,7 +171032,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000131", @@ -157340,7 +171054,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000132", @@ -157360,7 +171076,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000133", @@ -157380,7 +171098,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000134", @@ -157400,7 +171120,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000135", @@ -157420,7 +171142,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000136", @@ -157440,7 +171164,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000137", @@ -157460,7 +171186,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000138", @@ -157480,7 +171208,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000139", @@ -157500,7 +171230,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000140", @@ -157520,7 +171252,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000141", @@ -157540,7 +171274,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000142", @@ -157560,7 +171296,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000143", @@ -157580,7 +171318,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000144", @@ -157600,7 +171340,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000145", @@ -157620,7 +171362,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000146", @@ -157640,7 +171384,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000147", @@ -157660,7 +171406,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000148", @@ -157680,7 +171428,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000149", @@ -157700,7 +171450,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000170", @@ -157720,7 +171472,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000171", @@ -157740,7 +171494,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000172", @@ -157760,7 +171516,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000173", @@ -157780,7 +171538,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000174", @@ -157800,7 +171560,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000175", @@ -157820,7 +171582,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000176", @@ -157840,7 +171604,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000177", @@ -157860,7 +171626,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000178", @@ -157880,7 +171648,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000179", @@ -157900,7 +171670,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000180", @@ -157920,7 +171692,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000181", @@ -157940,7 +171714,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000192", @@ -157960,7 +171736,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000193", @@ -157980,7 +171758,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000194", @@ -158000,7 +171780,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000195", @@ -158020,7 +171802,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000196", @@ -158040,7 +171824,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000197", @@ -158060,7 +171846,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000198", @@ -158080,7 +171868,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000199", @@ -158100,7 +171890,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000200", @@ -158120,7 +171912,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000202", @@ -158140,7 +171934,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000203", @@ -158160,7 +171956,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000207", @@ -158180,7 +171978,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000208", @@ -158200,7 +172000,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000209", @@ -158220,7 +172022,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000210", @@ -158240,7 +172044,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000211", @@ -158260,7 +172066,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000212", @@ -158280,7 +172088,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000213", @@ -158300,7 +172110,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000214", @@ -158320,7 +172132,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000215", @@ -158340,7 +172154,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000216", @@ -158360,7 +172176,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000217", @@ -158380,7 +172198,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000218", @@ -158400,7 +172220,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000219", @@ -158420,7 +172242,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000220", @@ -158440,7 +172264,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000221", @@ -158460,7 +172286,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000222", @@ -158480,7 +172308,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000223", @@ -158500,7 +172330,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000224", @@ -158520,7 +172352,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000225", @@ -158540,7 +172374,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000226", @@ -158560,7 +172396,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000227", @@ -158580,7 +172418,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000228", @@ -158600,7 +172440,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000229", @@ -158620,7 +172462,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000234", @@ -158640,7 +172484,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000235", @@ -158660,7 +172506,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000236", @@ -158680,7 +172528,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000237", @@ -158700,7 +172550,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000238", @@ -158720,7 +172572,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000239", @@ -158740,7 +172594,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000240", @@ -158760,7 +172616,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000241", @@ -158780,7 +172638,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000242", @@ -158800,7 +172660,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000243", @@ -158820,7 +172682,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000244", @@ -158840,7 +172704,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E07000245", @@ -158860,7 +172726,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000001", @@ -158880,7 +172748,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000002", @@ -158900,7 +172770,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000003", @@ -158920,7 +172792,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000004", @@ -158940,7 +172814,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000005", @@ -158960,7 +172836,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000006", @@ -158980,7 +172858,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000007", @@ -159000,7 +172880,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000008", @@ -159020,7 +172902,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000009", @@ -159040,7 +172924,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000010", @@ -159060,7 +172946,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000011", @@ -159080,7 +172968,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000012", @@ -159100,7 +172990,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000013", @@ -159120,7 +173012,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000014", @@ -159140,7 +173034,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000015", @@ -159160,7 +173056,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000016", @@ -159180,7 +173078,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000017", @@ -159200,7 +173100,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000018", @@ -159220,7 +173122,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000019", @@ -159240,7 +173144,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000021", @@ -159260,7 +173166,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000022", @@ -159280,7 +173188,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000023", @@ -159300,7 +173210,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000024", @@ -159320,7 +173232,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000025", @@ -159340,7 +173254,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000026", @@ -159360,7 +173276,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000027", @@ -159380,7 +173298,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000028", @@ -159400,7 +173320,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000029", @@ -159420,7 +173342,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000030", @@ -159440,7 +173364,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000031", @@ -159460,7 +173386,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000032", @@ -159480,7 +173408,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000033", @@ -159500,7 +173430,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000034", @@ -159520,7 +173452,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000035", @@ -159540,7 +173474,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000036", @@ -159560,7 +173496,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E08000037", @@ -159580,7 +173518,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000001", @@ -159600,7 +173540,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000002", @@ -159620,7 +173562,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000003", @@ -159640,7 +173584,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000004", @@ -159660,7 +173606,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000005", @@ -159680,7 +173628,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000006", @@ -159700,7 +173650,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000007", @@ -159720,7 +173672,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000008", @@ -159740,7 +173694,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000009", @@ -159760,7 +173716,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000010", @@ -159780,7 +173738,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000011", @@ -159800,7 +173760,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000012", @@ -159820,7 +173782,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000013", @@ -159840,7 +173804,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000014", @@ -159860,7 +173826,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000015", @@ -159880,7 +173848,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000016", @@ -159900,7 +173870,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000017", @@ -159920,7 +173892,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000018", @@ -159940,7 +173914,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000019", @@ -159960,7 +173936,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000020", @@ -159980,7 +173958,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000021", @@ -160000,7 +173980,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000022", @@ -160020,7 +174002,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000023", @@ -160040,7 +174024,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000024", @@ -160060,7 +174046,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000025", @@ -160080,7 +174068,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000026", @@ -160100,7 +174090,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000027", @@ -160120,7 +174112,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000028", @@ -160140,7 +174134,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000029", @@ -160160,7 +174156,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000030", @@ -160180,7 +174178,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000031", @@ -160200,7 +174200,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000032", @@ -160220,7 +174222,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@E09000033", @@ -160240,7 +174244,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000001", @@ -160260,7 +174266,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000002", @@ -160280,7 +174288,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000003", @@ -160300,7 +174310,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000004", @@ -160320,7 +174332,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000005", @@ -160340,7 +174354,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000006", @@ -160360,7 +174376,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000007", @@ -160380,7 +174398,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000008", @@ -160400,7 +174420,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000009", @@ -160420,7 +174442,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000010", @@ -160440,7 +174464,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@N09000011", @@ -160460,7 +174486,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000005", @@ -160480,7 +174508,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000006", @@ -160500,7 +174530,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000008", @@ -160520,7 +174552,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000010", @@ -160540,7 +174574,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000011", @@ -160560,7 +174596,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000013", @@ -160580,7 +174618,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000014", @@ -160600,7 +174640,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000017", @@ -160620,7 +174662,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000018", @@ -160640,7 +174684,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000019", @@ -160660,7 +174706,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000020", @@ -160680,7 +174728,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000021", @@ -160700,7 +174750,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000023", @@ -160720,7 +174772,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000026", @@ -160740,7 +174794,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000027", @@ -160760,7 +174816,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000028", @@ -160780,7 +174838,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000029", @@ -160800,7 +174860,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000030", @@ -160820,7 +174882,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000033", @@ -160840,7 +174904,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000034", @@ -160860,7 +174926,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000035", @@ -160880,7 +174948,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000036", @@ -160900,7 +174970,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000038", @@ -160920,7 +174992,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000039", @@ -160940,7 +175014,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000040", @@ -160960,7 +175036,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000041", @@ -160980,7 +175058,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000042", @@ -161000,7 +175080,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000045", @@ -161020,7 +175102,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000047", @@ -161040,7 +175124,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000048", @@ -161060,7 +175146,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000049", @@ -161080,7 +175168,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@S12000050", @@ -161100,7 +175190,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000001", @@ -161120,7 +175212,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000002", @@ -161140,7 +175234,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000003", @@ -161160,7 +175256,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000004", @@ -161180,7 +175278,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000005", @@ -161200,7 +175300,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000006", @@ -161220,7 +175322,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000008", @@ -161240,7 +175344,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000009", @@ -161260,7 +175366,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000010", @@ -161280,7 +175388,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000011", @@ -161300,7 +175410,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000012", @@ -161320,7 +175432,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000013", @@ -161340,7 +175454,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000014", @@ -161360,7 +175476,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000015", @@ -161380,7 +175498,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000016", @@ -161400,7 +175520,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000018", @@ -161420,7 +175542,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000019", @@ -161440,7 +175564,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000020", @@ -161460,7 +175586,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000021", @@ -161480,7 +175608,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000022", @@ -161500,7 +175630,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000023", @@ -161520,7 +175652,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.20_30@W06000024", @@ -161540,7 +175674,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001063", @@ -161560,7 +175696,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001064", @@ -161580,7 +175718,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001065", @@ -161600,7 +175740,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001066", @@ -161620,7 +175762,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001067", @@ -161640,7 +175784,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001068", @@ -161660,7 +175806,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001069", @@ -161680,7 +175828,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001070", @@ -161700,7 +175850,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001071", @@ -161720,7 +175872,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001072", @@ -161740,7 +175894,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001073", @@ -161760,7 +175916,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001074", @@ -161780,7 +175938,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001075", @@ -161800,7 +175960,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001076", @@ -161820,7 +175982,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001077", @@ -161840,7 +176004,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001078", @@ -161860,7 +176026,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001079", @@ -161880,7 +176048,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001080", @@ -161900,7 +176070,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001081", @@ -161920,7 +176092,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001082", @@ -161940,7 +176114,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001083", @@ -161960,7 +176136,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001084", @@ -161980,7 +176158,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001085", @@ -162000,7 +176180,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001086", @@ -162020,7 +176202,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001087", @@ -162040,7 +176224,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001088", @@ -162060,7 +176246,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001089", @@ -162080,7 +176268,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001090", @@ -162100,7 +176290,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001091", @@ -162120,7 +176312,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001092", @@ -162140,7 +176334,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001093", @@ -162160,7 +176356,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001094", @@ -162180,7 +176378,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001095", @@ -162200,7 +176400,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001096", @@ -162220,7 +176422,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001097", @@ -162240,7 +176444,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001098", @@ -162260,7 +176466,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001099", @@ -162280,7 +176488,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001100", @@ -162300,7 +176510,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001101", @@ -162320,7 +176532,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001102", @@ -162340,7 +176554,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001103", @@ -162360,7 +176576,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001104", @@ -162380,7 +176598,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001105", @@ -162400,7 +176620,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001106", @@ -162420,7 +176642,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001107", @@ -162440,7 +176664,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001108", @@ -162460,7 +176686,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001109", @@ -162480,7 +176708,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001110", @@ -162500,7 +176730,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001111", @@ -162520,7 +176752,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001112", @@ -162540,7 +176774,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001113", @@ -162560,7 +176796,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001114", @@ -162580,7 +176818,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001115", @@ -162600,7 +176840,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001116", @@ -162620,7 +176862,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001117", @@ -162640,7 +176884,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001118", @@ -162660,7 +176906,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001119", @@ -162680,7 +176928,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001120", @@ -162700,7 +176950,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001121", @@ -162720,7 +176972,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001122", @@ -162740,7 +176994,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001123", @@ -162760,7 +177016,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001124", @@ -162780,7 +177038,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001125", @@ -162800,7 +177060,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001126", @@ -162820,7 +177082,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001127", @@ -162840,7 +177104,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001128", @@ -162860,7 +177126,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001129", @@ -162880,7 +177148,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001130", @@ -162900,7 +177170,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001131", @@ -162920,7 +177192,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001132", @@ -162940,7 +177214,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001133", @@ -162960,7 +177236,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001134", @@ -162980,7 +177258,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001135", @@ -163000,7 +177280,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001136", @@ -163020,7 +177302,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001137", @@ -163040,7 +177324,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001138", @@ -163060,7 +177346,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001139", @@ -163080,7 +177368,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001140", @@ -163100,7 +177390,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001141", @@ -163120,7 +177412,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001142", @@ -163140,7 +177434,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001143", @@ -163160,7 +177456,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001144", @@ -163180,7 +177478,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001145", @@ -163200,7 +177500,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001146", @@ -163220,7 +177522,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001147", @@ -163240,7 +177544,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001148", @@ -163260,7 +177566,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001149", @@ -163280,7 +177588,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001150", @@ -163300,7 +177610,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001151", @@ -163320,7 +177632,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001152", @@ -163340,7 +177654,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001153", @@ -163360,7 +177676,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001154", @@ -163380,7 +177698,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001155", @@ -163400,7 +177720,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001156", @@ -163420,7 +177742,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001157", @@ -163440,7 +177764,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001158", @@ -163460,7 +177786,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001159", @@ -163480,7 +177808,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001160", @@ -163500,7 +177830,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001161", @@ -163520,7 +177852,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001162", @@ -163540,7 +177874,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001163", @@ -163560,7 +177896,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001164", @@ -163580,7 +177918,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001165", @@ -163600,7 +177940,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001166", @@ -163620,7 +177962,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001167", @@ -163640,7 +177984,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001168", @@ -163660,7 +178006,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001169", @@ -163680,7 +178028,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001170", @@ -163700,7 +178050,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001171", @@ -163720,7 +178072,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001172", @@ -163740,7 +178094,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001173", @@ -163760,7 +178116,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001174", @@ -163780,7 +178138,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001175", @@ -163800,7 +178160,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001176", @@ -163820,7 +178182,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001177", @@ -163840,7 +178204,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001178", @@ -163860,7 +178226,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001179", @@ -163880,7 +178248,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001180", @@ -163900,7 +178270,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001181", @@ -163920,7 +178292,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001182", @@ -163940,7 +178314,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001183", @@ -163960,7 +178336,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001184", @@ -163980,7 +178358,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001185", @@ -164000,7 +178380,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001186", @@ -164020,7 +178402,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001187", @@ -164040,7 +178424,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001188", @@ -164060,7 +178446,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001189", @@ -164080,7 +178468,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001190", @@ -164100,7 +178490,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001191", @@ -164120,7 +178512,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001192", @@ -164140,7 +178534,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001193", @@ -164160,7 +178556,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001194", @@ -164180,7 +178578,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001195", @@ -164200,7 +178600,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001196", @@ -164220,7 +178622,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001197", @@ -164240,7 +178644,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001198", @@ -164260,7 +178666,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001199", @@ -164280,7 +178688,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001200", @@ -164300,7 +178710,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001201", @@ -164320,7 +178732,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001202", @@ -164340,7 +178754,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001203", @@ -164360,7 +178776,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001204", @@ -164380,7 +178798,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001205", @@ -164400,7 +178820,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001206", @@ -164420,7 +178842,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001207", @@ -164440,7 +178864,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001208", @@ -164460,7 +178886,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001209", @@ -164480,7 +178908,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001210", @@ -164500,7 +178930,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001211", @@ -164520,7 +178952,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001212", @@ -164540,7 +178974,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001213", @@ -164560,7 +178996,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001214", @@ -164580,7 +179018,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001215", @@ -164600,7 +179040,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001216", @@ -164620,7 +179062,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001217", @@ -164640,7 +179084,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001218", @@ -164660,7 +179106,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001219", @@ -164680,7 +179128,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001220", @@ -164700,7 +179150,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001221", @@ -164720,7 +179172,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001222", @@ -164740,7 +179194,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001223", @@ -164760,7 +179216,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001224", @@ -164780,7 +179238,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001225", @@ -164800,7 +179260,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001226", @@ -164820,7 +179282,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001227", @@ -164840,7 +179304,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001228", @@ -164860,7 +179326,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001229", @@ -164880,7 +179348,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001230", @@ -164900,7 +179370,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001231", @@ -164920,7 +179392,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001232", @@ -164940,7 +179414,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001233", @@ -164960,7 +179436,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001234", @@ -164980,7 +179458,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001235", @@ -165000,7 +179480,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001236", @@ -165020,7 +179502,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001237", @@ -165040,7 +179524,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001238", @@ -165060,7 +179546,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001239", @@ -165080,7 +179568,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001240", @@ -165100,7 +179590,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001241", @@ -165120,7 +179612,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001242", @@ -165140,7 +179634,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001243", @@ -165160,7 +179656,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001244", @@ -165180,7 +179678,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001245", @@ -165200,7 +179700,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001246", @@ -165220,7 +179722,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001247", @@ -165240,7 +179744,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001248", @@ -165260,7 +179766,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001249", @@ -165280,7 +179788,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001250", @@ -165300,7 +179810,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001251", @@ -165320,7 +179832,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001252", @@ -165340,7 +179854,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001253", @@ -165360,7 +179876,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001254", @@ -165380,7 +179898,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001255", @@ -165400,7 +179920,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001256", @@ -165420,7 +179942,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001257", @@ -165440,7 +179964,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001258", @@ -165460,7 +179986,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001259", @@ -165480,7 +180008,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001260", @@ -165500,7 +180030,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001261", @@ -165520,7 +180052,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001262", @@ -165540,7 +180074,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001263", @@ -165560,7 +180096,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001264", @@ -165580,7 +180118,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001265", @@ -165600,7 +180140,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001266", @@ -165620,7 +180162,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001267", @@ -165640,7 +180184,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001268", @@ -165660,7 +180206,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001269", @@ -165680,7 +180228,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001270", @@ -165700,7 +180250,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001271", @@ -165720,7 +180272,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001272", @@ -165740,7 +180294,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001273", @@ -165760,7 +180316,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001274", @@ -165780,7 +180338,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001275", @@ -165800,7 +180360,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001276", @@ -165820,7 +180382,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001277", @@ -165840,7 +180404,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001278", @@ -165860,7 +180426,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001279", @@ -165880,7 +180448,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001280", @@ -165900,7 +180470,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001281", @@ -165920,7 +180492,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001282", @@ -165940,7 +180514,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001283", @@ -165960,7 +180536,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001284", @@ -165980,7 +180558,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001285", @@ -166000,7 +180580,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001286", @@ -166020,7 +180602,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001287", @@ -166040,7 +180624,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001288", @@ -166060,7 +180646,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001289", @@ -166080,7 +180668,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001290", @@ -166100,7 +180690,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001291", @@ -166120,7 +180712,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001292", @@ -166140,7 +180734,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001293", @@ -166160,7 +180756,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001294", @@ -166180,7 +180778,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001295", @@ -166200,7 +180800,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001296", @@ -166220,7 +180822,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001297", @@ -166240,7 +180844,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001298", @@ -166260,7 +180866,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001299", @@ -166280,7 +180888,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001300", @@ -166300,7 +180910,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001301", @@ -166320,7 +180932,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001302", @@ -166340,7 +180954,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001303", @@ -166360,7 +180976,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001304", @@ -166380,7 +180998,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001305", @@ -166400,7 +181020,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001306", @@ -166420,7 +181042,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001307", @@ -166440,7 +181064,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001308", @@ -166460,7 +181086,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001309", @@ -166480,7 +181108,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001310", @@ -166500,7 +181130,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001311", @@ -166520,7 +181152,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001312", @@ -166540,7 +181174,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001313", @@ -166560,7 +181196,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001314", @@ -166580,7 +181218,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001315", @@ -166600,7 +181240,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001316", @@ -166620,7 +181262,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001317", @@ -166640,7 +181284,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001318", @@ -166660,7 +181306,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001319", @@ -166680,7 +181328,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001320", @@ -166700,7 +181350,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001321", @@ -166720,7 +181372,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001322", @@ -166740,7 +181394,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001323", @@ -166760,7 +181416,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001324", @@ -166780,7 +181438,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001325", @@ -166800,7 +181460,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001326", @@ -166820,7 +181482,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001327", @@ -166840,7 +181504,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001328", @@ -166860,7 +181526,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001329", @@ -166880,7 +181548,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001330", @@ -166900,7 +181570,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001331", @@ -166920,7 +181592,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001332", @@ -166940,7 +181614,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001333", @@ -166960,7 +181636,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001334", @@ -166980,7 +181658,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001335", @@ -167000,7 +181680,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001336", @@ -167020,7 +181702,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001337", @@ -167040,7 +181724,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001338", @@ -167060,7 +181746,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001339", @@ -167080,7 +181768,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001340", @@ -167100,7 +181790,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001341", @@ -167120,7 +181812,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001342", @@ -167140,7 +181834,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001343", @@ -167160,7 +181856,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001344", @@ -167180,7 +181878,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001345", @@ -167200,7 +181900,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001346", @@ -167220,7 +181922,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001347", @@ -167240,7 +181944,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001348", @@ -167260,7 +181966,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001349", @@ -167280,7 +181988,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001350", @@ -167300,7 +182010,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001351", @@ -167320,7 +182032,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001352", @@ -167340,7 +182054,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001353", @@ -167360,7 +182076,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001354", @@ -167380,7 +182098,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001355", @@ -167400,7 +182120,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001356", @@ -167420,7 +182142,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001357", @@ -167440,7 +182164,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001358", @@ -167460,7 +182186,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001359", @@ -167480,7 +182208,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001360", @@ -167500,7 +182230,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001361", @@ -167520,7 +182252,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001362", @@ -167540,7 +182274,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001363", @@ -167560,7 +182296,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001364", @@ -167580,7 +182318,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001365", @@ -167600,7 +182340,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001366", @@ -167620,7 +182362,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001367", @@ -167640,7 +182384,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001368", @@ -167660,7 +182406,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001369", @@ -167680,7 +182428,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001370", @@ -167700,7 +182450,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001371", @@ -167720,7 +182472,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001372", @@ -167740,7 +182494,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001373", @@ -167760,7 +182516,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001374", @@ -167780,7 +182538,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001375", @@ -167800,7 +182560,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001376", @@ -167820,7 +182582,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001377", @@ -167840,7 +182604,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001378", @@ -167860,7 +182626,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001379", @@ -167880,7 +182648,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001380", @@ -167900,7 +182670,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001381", @@ -167920,7 +182692,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001382", @@ -167940,7 +182714,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001383", @@ -167960,7 +182736,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001384", @@ -167980,7 +182758,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001385", @@ -168000,7 +182780,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001386", @@ -168020,7 +182802,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001387", @@ -168040,7 +182824,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001388", @@ -168060,7 +182846,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001389", @@ -168080,7 +182868,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001390", @@ -168100,7 +182890,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001391", @@ -168120,7 +182912,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001392", @@ -168140,7 +182934,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001393", @@ -168160,7 +182956,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001394", @@ -168180,7 +182978,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001395", @@ -168200,7 +183000,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001396", @@ -168220,7 +183022,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001397", @@ -168240,7 +183044,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001398", @@ -168260,7 +183066,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001399", @@ -168280,7 +183088,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001400", @@ -168300,7 +183110,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001401", @@ -168320,7 +183132,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001402", @@ -168340,7 +183154,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001403", @@ -168360,7 +183176,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001404", @@ -168380,7 +183198,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001405", @@ -168400,7 +183220,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001406", @@ -168420,7 +183242,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001407", @@ -168440,7 +183264,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001408", @@ -168460,7 +183286,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001409", @@ -168480,7 +183308,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001410", @@ -168500,7 +183330,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001411", @@ -168520,7 +183352,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001412", @@ -168540,7 +183374,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001413", @@ -168560,7 +183396,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001414", @@ -168580,7 +183418,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001415", @@ -168600,7 +183440,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001416", @@ -168620,7 +183462,9 @@ "geography_level": "constituency", "geography_id": "E14001416" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001417", @@ -168640,7 +183484,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001418", @@ -168660,7 +183506,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001419", @@ -168680,7 +183528,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001420", @@ -168700,7 +183550,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001421", @@ -168720,7 +183572,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001422", @@ -168740,7 +183594,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001423", @@ -168760,7 +183616,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001424", @@ -168780,7 +183638,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001425", @@ -168800,7 +183660,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001426", @@ -168820,7 +183682,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001427", @@ -168840,7 +183704,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001428", @@ -168860,7 +183726,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001429", @@ -168880,7 +183748,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001430", @@ -168900,7 +183770,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001431", @@ -168920,7 +183792,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001432", @@ -168940,7 +183814,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001433", @@ -168960,7 +183836,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001434", @@ -168980,7 +183858,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001435", @@ -169000,7 +183880,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001436", @@ -169020,7 +183902,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001437", @@ -169040,7 +183924,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001438", @@ -169060,7 +183946,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001439", @@ -169080,7 +183968,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001440", @@ -169100,7 +183990,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001441", @@ -169120,7 +184012,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001442", @@ -169140,7 +184034,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001443", @@ -169160,7 +184056,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001444", @@ -169180,7 +184078,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001445", @@ -169200,7 +184100,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001446", @@ -169220,7 +184122,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001447", @@ -169240,7 +184144,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001448", @@ -169260,7 +184166,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001449", @@ -169280,7 +184188,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001450", @@ -169300,7 +184210,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001451", @@ -169320,7 +184232,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001452", @@ -169340,7 +184254,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001453", @@ -169360,7 +184276,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001454", @@ -169380,7 +184298,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001455", @@ -169400,7 +184320,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001456", @@ -169420,7 +184342,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001457", @@ -169440,7 +184364,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001458", @@ -169460,7 +184386,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001459", @@ -169480,7 +184408,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001460", @@ -169500,7 +184430,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001461", @@ -169520,7 +184452,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001462", @@ -169540,7 +184474,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001463", @@ -169560,7 +184496,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001464", @@ -169580,7 +184518,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001465", @@ -169600,7 +184540,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001466", @@ -169620,7 +184562,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001467", @@ -169640,7 +184584,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001468", @@ -169660,7 +184606,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001469", @@ -169680,7 +184628,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001470", @@ -169700,7 +184650,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001471", @@ -169720,7 +184672,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001472", @@ -169740,7 +184694,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001473", @@ -169760,7 +184716,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001474", @@ -169780,7 +184738,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001475", @@ -169800,7 +184760,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001476", @@ -169820,7 +184782,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001477", @@ -169840,7 +184804,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001478", @@ -169860,7 +184826,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001479", @@ -169880,7 +184848,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001480", @@ -169900,7 +184870,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001481", @@ -169920,7 +184892,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001482", @@ -169940,7 +184914,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001483", @@ -169960,7 +184936,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001484", @@ -169980,7 +184958,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001485", @@ -170000,7 +184980,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001486", @@ -170020,7 +185002,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001487", @@ -170040,7 +185024,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001488", @@ -170060,7 +185046,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001489", @@ -170080,7 +185068,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001490", @@ -170100,7 +185090,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001491", @@ -170120,7 +185112,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001492", @@ -170140,7 +185134,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001493", @@ -170160,7 +185156,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001494", @@ -170180,7 +185178,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001495", @@ -170200,7 +185200,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001496", @@ -170220,7 +185222,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001497", @@ -170240,7 +185244,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001498", @@ -170260,7 +185266,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001499", @@ -170280,7 +185288,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001500", @@ -170300,7 +185310,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001501", @@ -170320,7 +185332,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001502", @@ -170340,7 +185354,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001503", @@ -170360,7 +185376,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001504", @@ -170380,7 +185398,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001505", @@ -170400,7 +185420,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001506", @@ -170420,7 +185442,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001507", @@ -170440,7 +185464,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001508", @@ -170460,7 +185486,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001509", @@ -170480,7 +185508,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001510", @@ -170500,7 +185530,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001511", @@ -170520,7 +185552,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001512", @@ -170540,7 +185574,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001513", @@ -170560,7 +185596,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001514", @@ -170580,7 +185618,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001515", @@ -170600,7 +185640,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001516", @@ -170620,7 +185662,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001517", @@ -170640,7 +185684,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001518", @@ -170660,7 +185706,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001519", @@ -170680,7 +185728,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001520", @@ -170700,7 +185750,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001521", @@ -170720,7 +185772,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001522", @@ -170740,7 +185794,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001523", @@ -170760,7 +185816,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001524", @@ -170780,7 +185838,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001525", @@ -170800,7 +185860,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001526", @@ -170820,7 +185882,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001527", @@ -170840,7 +185904,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001528", @@ -170860,7 +185926,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001529", @@ -170880,7 +185948,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001530", @@ -170900,7 +185970,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001531", @@ -170920,7 +185992,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001532", @@ -170940,7 +186014,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001533", @@ -170960,7 +186036,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001534", @@ -170980,7 +186058,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001535", @@ -171000,7 +186080,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001536", @@ -171020,7 +186102,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001537", @@ -171040,7 +186124,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001538", @@ -171060,7 +186146,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001539", @@ -171080,7 +186168,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001540", @@ -171100,7 +186190,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001541", @@ -171120,7 +186212,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001542", @@ -171140,7 +186234,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001543", @@ -171160,7 +186256,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001544", @@ -171180,7 +186278,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001545", @@ -171200,7 +186300,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001546", @@ -171220,7 +186322,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001547", @@ -171240,7 +186344,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001548", @@ -171260,7 +186366,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001549", @@ -171280,7 +186388,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001550", @@ -171300,7 +186410,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001551", @@ -171320,7 +186432,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001552", @@ -171340,7 +186454,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001553", @@ -171360,7 +186476,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001554", @@ -171380,7 +186498,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001555", @@ -171400,7 +186520,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001556", @@ -171420,7 +186542,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001557", @@ -171440,7 +186564,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001558", @@ -171460,7 +186586,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001559", @@ -171480,7 +186608,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001560", @@ -171500,7 +186630,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001561", @@ -171520,7 +186652,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001562", @@ -171540,7 +186674,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001563", @@ -171560,7 +186696,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001564", @@ -171580,7 +186718,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001565", @@ -171600,7 +186740,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001566", @@ -171620,7 +186762,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001567", @@ -171640,7 +186784,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001568", @@ -171660,7 +186806,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001569", @@ -171680,7 +186828,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001570", @@ -171700,7 +186850,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001571", @@ -171720,7 +186872,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001572", @@ -171740,7 +186894,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001573", @@ -171760,7 +186916,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001574", @@ -171780,7 +186938,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001575", @@ -171800,7 +186960,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001576", @@ -171820,7 +186982,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001577", @@ -171840,7 +187004,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001578", @@ -171860,7 +187026,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001579", @@ -171880,7 +187048,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001580", @@ -171900,7 +187070,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001581", @@ -171920,7 +187092,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001582", @@ -171940,7 +187114,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001583", @@ -171960,7 +187136,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001584", @@ -171980,7 +187158,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001585", @@ -172000,7 +187180,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001586", @@ -172020,7 +187202,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001587", @@ -172040,7 +187224,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001588", @@ -172060,7 +187246,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001589", @@ -172080,7 +187268,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001590", @@ -172100,7 +187290,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001591", @@ -172120,7 +187312,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001592", @@ -172140,7 +187334,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001593", @@ -172160,7 +187356,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001594", @@ -172180,7 +187378,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001595", @@ -172200,7 +187400,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001596", @@ -172220,7 +187422,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001597", @@ -172240,7 +187444,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001598", @@ -172260,7 +187466,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001599", @@ -172280,7 +187488,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001600", @@ -172300,7 +187510,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001601", @@ -172320,7 +187532,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001602", @@ -172340,7 +187554,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001603", @@ -172360,7 +187576,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001604", @@ -172380,7 +187598,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E14001605", @@ -172400,7 +187620,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000001", @@ -172420,7 +187642,9 @@ "geography_level": "constituency", "geography_id": "N05000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000002", @@ -172440,7 +187664,9 @@ "geography_level": "constituency", "geography_id": "N05000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000003", @@ -172460,7 +187686,9 @@ "geography_level": "constituency", "geography_id": "N05000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000004", @@ -172480,7 +187708,9 @@ "geography_level": "constituency", "geography_id": "N05000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000005", @@ -172500,7 +187730,9 @@ "geography_level": "constituency", "geography_id": "N05000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000006", @@ -172520,7 +187752,9 @@ "geography_level": "constituency", "geography_id": "N05000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000007", @@ -172540,7 +187774,9 @@ "geography_level": "constituency", "geography_id": "N05000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000008", @@ -172560,7 +187796,9 @@ "geography_level": "constituency", "geography_id": "N05000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000009", @@ -172580,7 +187818,9 @@ "geography_level": "constituency", "geography_id": "N05000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000010", @@ -172600,7 +187840,9 @@ "geography_level": "constituency", "geography_id": "N05000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000011", @@ -172620,7 +187862,9 @@ "geography_level": "constituency", "geography_id": "N05000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000012", @@ -172640,7 +187884,9 @@ "geography_level": "constituency", "geography_id": "N05000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000013", @@ -172660,7 +187906,9 @@ "geography_level": "constituency", "geography_id": "N05000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000014", @@ -172680,7 +187928,9 @@ "geography_level": "constituency", "geography_id": "N05000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000015", @@ -172700,7 +187950,9 @@ "geography_level": "constituency", "geography_id": "N05000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000016", @@ -172720,7 +187972,9 @@ "geography_level": "constituency", "geography_id": "N05000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000017", @@ -172740,7 +187994,9 @@ "geography_level": "constituency", "geography_id": "N05000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N05000018", @@ -172760,7 +188016,9 @@ "geography_level": "constituency", "geography_id": "N05000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000021", @@ -172780,7 +188038,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000027", @@ -172800,7 +188060,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000045", @@ -172820,7 +188082,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000048", @@ -172840,7 +188104,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000051", @@ -172860,7 +188126,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000060", @@ -172880,7 +188148,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000061", @@ -172900,7 +188170,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000062", @@ -172920,7 +188192,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000063", @@ -172940,7 +188214,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000064", @@ -172960,7 +188236,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000065", @@ -172980,7 +188258,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000066", @@ -173000,7 +188280,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000067", @@ -173020,7 +188302,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000068", @@ -173040,7 +188324,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000069", @@ -173060,7 +188346,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000070", @@ -173080,7 +188368,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000071", @@ -173100,7 +188390,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000072", @@ -173120,7 +188412,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000073", @@ -173140,7 +188434,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000074", @@ -173160,7 +188456,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000075", @@ -173180,7 +188478,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000076", @@ -173200,7 +188500,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000077", @@ -173220,7 +188522,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000078", @@ -173240,7 +188544,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000079", @@ -173260,7 +188566,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000080", @@ -173280,7 +188588,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000081", @@ -173300,7 +188610,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000082", @@ -173320,7 +188632,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000083", @@ -173340,7 +188654,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000084", @@ -173360,7 +188676,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000085", @@ -173380,7 +188698,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000086", @@ -173400,7 +188720,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000087", @@ -173420,7 +188742,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000088", @@ -173440,7 +188764,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000089", @@ -173460,7 +188786,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000090", @@ -173480,7 +188808,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000091", @@ -173500,7 +188830,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000092", @@ -173520,7 +188852,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000093", @@ -173540,7 +188874,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000094", @@ -173560,7 +188896,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000095", @@ -173580,7 +188918,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000096", @@ -173600,7 +188940,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000097", @@ -173620,7 +188962,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000098", @@ -173640,7 +188984,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000099", @@ -173660,7 +189006,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000100", @@ -173680,7 +189028,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000101", @@ -173700,7 +189050,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000102", @@ -173720,7 +189072,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000103", @@ -173740,7 +189094,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000104", @@ -173760,7 +189116,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000105", @@ -173780,7 +189138,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000106", @@ -173800,7 +189160,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000107", @@ -173820,7 +189182,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000108", @@ -173840,7 +189204,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000109", @@ -173860,7 +189226,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000110", @@ -173880,7 +189248,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S14000111", @@ -173900,7 +189270,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000081", @@ -173920,7 +189292,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000082", @@ -173940,7 +189314,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000083", @@ -173960,7 +189336,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000084", @@ -173980,7 +189358,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000085", @@ -174000,7 +189380,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000086", @@ -174020,7 +189402,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000087", @@ -174040,7 +189424,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000088", @@ -174060,7 +189446,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000089", @@ -174080,7 +189468,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000090", @@ -174100,7 +189490,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000091", @@ -174120,7 +189512,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000092", @@ -174140,7 +189534,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000093", @@ -174160,7 +189556,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000094", @@ -174180,7 +189578,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000095", @@ -174200,7 +189600,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000096", @@ -174220,7 +189622,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000097", @@ -174240,7 +189644,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000098", @@ -174260,7 +189666,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000099", @@ -174280,7 +189688,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000100", @@ -174300,7 +189710,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000101", @@ -174320,7 +189732,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000102", @@ -174340,7 +189754,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000103", @@ -174360,7 +189776,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000104", @@ -174380,7 +189798,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000105", @@ -174400,7 +189820,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000106", @@ -174420,7 +189842,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000107", @@ -174440,7 +189864,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000108", @@ -174460,7 +189886,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000109", @@ -174480,7 +189908,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000110", @@ -174500,7 +189930,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000111", @@ -174520,7 +189952,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W07000112", @@ -174540,7 +189974,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000001", @@ -174560,7 +189996,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000002", @@ -174580,7 +190018,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000003", @@ -174600,7 +190040,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000004", @@ -174620,7 +190062,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000005", @@ -174640,7 +190084,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000006", @@ -174660,7 +190106,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000007", @@ -174680,7 +190128,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000008", @@ -174700,7 +190150,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000009", @@ -174720,7 +190172,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000010", @@ -174740,7 +190194,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000011", @@ -174760,7 +190216,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000012", @@ -174780,7 +190238,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000013", @@ -174800,7 +190260,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000014", @@ -174820,7 +190282,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000015", @@ -174840,7 +190304,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000016", @@ -174860,7 +190326,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000017", @@ -174880,7 +190348,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000018", @@ -174900,7 +190370,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000019", @@ -174920,7 +190392,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000020", @@ -174940,7 +190414,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000021", @@ -174960,7 +190436,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000022", @@ -174980,7 +190458,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000023", @@ -175000,7 +190480,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000024", @@ -175020,7 +190502,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000025", @@ -175040,7 +190524,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000026", @@ -175060,7 +190546,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000027", @@ -175080,7 +190568,9 @@ "geography_level": "local_authority", "geography_id": "E06000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000030", @@ -175100,7 +190590,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000031", @@ -175120,7 +190612,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000032", @@ -175140,7 +190634,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000033", @@ -175160,7 +190656,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000034", @@ -175180,7 +190678,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000035", @@ -175200,7 +190700,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000036", @@ -175220,7 +190722,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000037", @@ -175240,7 +190744,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000038", @@ -175260,7 +190766,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000039", @@ -175280,7 +190788,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000040", @@ -175300,7 +190810,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000041", @@ -175320,7 +190832,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000042", @@ -175340,7 +190854,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000043", @@ -175360,7 +190876,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000044", @@ -175380,7 +190898,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000045", @@ -175400,7 +190920,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000046", @@ -175420,7 +190942,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000047", @@ -175440,7 +190964,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000049", @@ -175460,7 +190986,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000050", @@ -175480,7 +191008,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000051", @@ -175500,7 +191030,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000052", @@ -175520,7 +191052,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000053", @@ -175540,7 +191074,9 @@ "geography_level": "local_authority", "geography_id": "E06000053" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000054", @@ -175560,7 +191096,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000055", @@ -175580,7 +191118,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000056", @@ -175600,7 +191140,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000057", @@ -175620,7 +191162,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000058", @@ -175640,7 +191184,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000059", @@ -175660,7 +191206,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000060", @@ -175680,7 +191228,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000061", @@ -175700,7 +191250,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000062", @@ -175720,7 +191272,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000063", @@ -175740,7 +191294,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000064", @@ -175760,7 +191316,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000065", @@ -175780,7 +191338,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E06000066", @@ -175800,7 +191360,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000008", @@ -175820,7 +191382,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000009", @@ -175840,7 +191404,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000010", @@ -175860,7 +191426,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000011", @@ -175880,7 +191448,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000012", @@ -175900,7 +191470,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000032", @@ -175920,7 +191492,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000033", @@ -175940,7 +191514,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000034", @@ -175960,7 +191536,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000035", @@ -175980,7 +191558,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000036", @@ -176000,7 +191580,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000037", @@ -176020,7 +191602,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000038", @@ -176040,7 +191624,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000039", @@ -176060,7 +191646,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000040", @@ -176080,7 +191668,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000041", @@ -176100,7 +191690,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000042", @@ -176120,7 +191712,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000043", @@ -176140,7 +191734,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000044", @@ -176160,7 +191756,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000045", @@ -176180,7 +191778,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000046", @@ -176200,7 +191800,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000047", @@ -176220,7 +191822,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000061", @@ -176240,7 +191844,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000062", @@ -176260,7 +191866,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000063", @@ -176280,7 +191888,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000064", @@ -176300,7 +191910,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000065", @@ -176320,7 +191932,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000066", @@ -176340,7 +191954,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000067", @@ -176360,7 +191976,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000068", @@ -176380,7 +191998,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000069", @@ -176400,7 +192020,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000070", @@ -176420,7 +192042,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000071", @@ -176440,7 +192064,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000072", @@ -176460,7 +192086,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000073", @@ -176480,7 +192108,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000074", @@ -176500,7 +192130,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000075", @@ -176520,7 +192152,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000076", @@ -176540,7 +192174,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000077", @@ -176560,7 +192196,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000078", @@ -176580,7 +192218,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000079", @@ -176600,7 +192240,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000080", @@ -176620,7 +192262,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000081", @@ -176640,7 +192284,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000082", @@ -176660,7 +192306,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000083", @@ -176680,7 +192328,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000084", @@ -176700,7 +192350,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000085", @@ -176720,7 +192372,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000086", @@ -176740,7 +192394,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000087", @@ -176760,7 +192416,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000088", @@ -176780,7 +192438,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000089", @@ -176800,7 +192460,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000090", @@ -176820,7 +192482,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000091", @@ -176840,7 +192504,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000092", @@ -176860,7 +192526,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000093", @@ -176880,7 +192548,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000094", @@ -176900,7 +192570,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000095", @@ -176920,7 +192592,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000096", @@ -176940,7 +192614,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000098", @@ -176960,7 +192636,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000099", @@ -176980,7 +192658,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000102", @@ -177000,7 +192680,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000103", @@ -177020,7 +192702,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000105", @@ -177040,7 +192724,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000106", @@ -177060,7 +192746,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000107", @@ -177080,7 +192768,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000108", @@ -177100,7 +192790,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000109", @@ -177120,7 +192812,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000110", @@ -177140,7 +192834,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000111", @@ -177160,7 +192856,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000112", @@ -177180,7 +192878,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000113", @@ -177200,7 +192900,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000114", @@ -177220,7 +192922,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000115", @@ -177240,7 +192944,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000116", @@ -177260,7 +192966,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000117", @@ -177280,7 +192988,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000118", @@ -177300,7 +193010,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000119", @@ -177320,7 +193032,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000120", @@ -177340,7 +193054,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000121", @@ -177360,7 +193076,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000122", @@ -177380,7 +193098,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000123", @@ -177400,7 +193120,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000124", @@ -177420,7 +193142,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000125", @@ -177440,7 +193164,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000126", @@ -177460,7 +193186,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000127", @@ -177480,7 +193208,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000128", @@ -177500,7 +193230,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000129", @@ -177520,7 +193252,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000130", @@ -177540,7 +193274,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000131", @@ -177560,7 +193296,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000132", @@ -177580,7 +193318,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000133", @@ -177600,7 +193340,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000134", @@ -177620,7 +193362,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000135", @@ -177640,7 +193384,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000136", @@ -177660,7 +193406,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000137", @@ -177680,7 +193428,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000138", @@ -177700,7 +193450,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000139", @@ -177720,7 +193472,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000140", @@ -177740,7 +193494,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000141", @@ -177760,7 +193516,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000142", @@ -177780,7 +193538,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000143", @@ -177800,7 +193560,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000144", @@ -177820,7 +193582,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000145", @@ -177840,7 +193604,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000146", @@ -177860,7 +193626,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000147", @@ -177880,7 +193648,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000148", @@ -177900,7 +193670,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000149", @@ -177920,7 +193692,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000170", @@ -177940,7 +193714,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000171", @@ -177960,7 +193736,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000172", @@ -177980,7 +193758,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000173", @@ -178000,7 +193780,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000174", @@ -178020,7 +193802,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000175", @@ -178040,7 +193824,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000176", @@ -178060,7 +193846,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000177", @@ -178080,7 +193868,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000178", @@ -178100,7 +193890,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000179", @@ -178120,7 +193912,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000180", @@ -178140,7 +193934,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000181", @@ -178160,7 +193956,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000192", @@ -178180,7 +193978,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000193", @@ -178200,7 +194000,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000194", @@ -178220,7 +194022,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000195", @@ -178240,7 +194044,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000196", @@ -178260,7 +194066,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000197", @@ -178280,7 +194088,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000198", @@ -178300,7 +194110,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000199", @@ -178320,7 +194132,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000200", @@ -178340,7 +194154,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000202", @@ -178360,7 +194176,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000203", @@ -178380,7 +194198,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000207", @@ -178400,7 +194220,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000208", @@ -178420,7 +194242,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000209", @@ -178440,7 +194264,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000210", @@ -178460,7 +194286,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000211", @@ -178480,7 +194308,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000212", @@ -178500,7 +194330,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000213", @@ -178520,7 +194352,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000214", @@ -178540,7 +194374,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000215", @@ -178560,7 +194396,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000216", @@ -178580,7 +194418,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000217", @@ -178600,7 +194440,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000218", @@ -178620,7 +194462,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000219", @@ -178640,7 +194484,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000220", @@ -178660,7 +194506,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000221", @@ -178680,7 +194528,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000222", @@ -178700,7 +194550,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000223", @@ -178720,7 +194572,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000224", @@ -178740,7 +194594,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000225", @@ -178760,7 +194616,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000226", @@ -178780,7 +194638,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000227", @@ -178800,7 +194660,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000228", @@ -178820,7 +194682,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000229", @@ -178840,7 +194704,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000234", @@ -178860,7 +194726,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000235", @@ -178880,7 +194748,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000236", @@ -178900,7 +194770,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000237", @@ -178920,7 +194792,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000238", @@ -178940,7 +194814,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000239", @@ -178960,7 +194836,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000240", @@ -178980,7 +194858,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000241", @@ -179000,7 +194880,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000242", @@ -179020,7 +194902,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000243", @@ -179040,7 +194924,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000244", @@ -179060,7 +194946,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E07000245", @@ -179080,7 +194968,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000001", @@ -179100,7 +194990,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000002", @@ -179120,7 +195012,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000003", @@ -179140,7 +195034,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000004", @@ -179160,7 +195056,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000005", @@ -179180,7 +195078,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000006", @@ -179200,7 +195100,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000007", @@ -179220,7 +195122,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000008", @@ -179240,7 +195144,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000009", @@ -179260,7 +195166,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000010", @@ -179280,7 +195188,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000011", @@ -179300,7 +195210,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000012", @@ -179320,7 +195232,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000013", @@ -179340,7 +195254,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000014", @@ -179360,7 +195276,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000015", @@ -179380,7 +195298,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000016", @@ -179400,7 +195320,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000017", @@ -179420,7 +195342,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000018", @@ -179440,7 +195364,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000019", @@ -179460,7 +195386,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000021", @@ -179480,7 +195408,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000022", @@ -179500,7 +195430,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000023", @@ -179520,7 +195452,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000024", @@ -179540,7 +195474,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000025", @@ -179560,7 +195496,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000026", @@ -179580,7 +195518,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000027", @@ -179600,7 +195540,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000028", @@ -179620,7 +195562,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000029", @@ -179640,7 +195584,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000030", @@ -179660,7 +195606,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000031", @@ -179680,7 +195628,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000032", @@ -179700,7 +195650,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000033", @@ -179720,7 +195672,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000034", @@ -179740,7 +195694,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000035", @@ -179760,7 +195716,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000036", @@ -179780,7 +195738,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E08000037", @@ -179800,7 +195760,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000001", @@ -179820,7 +195782,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000002", @@ -179840,7 +195804,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000003", @@ -179860,7 +195826,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000004", @@ -179880,7 +195848,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000005", @@ -179900,7 +195870,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000006", @@ -179920,7 +195892,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000007", @@ -179940,7 +195914,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000008", @@ -179960,7 +195936,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000009", @@ -179980,7 +195958,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000010", @@ -180000,7 +195980,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000011", @@ -180020,7 +196002,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000012", @@ -180040,7 +196024,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000013", @@ -180060,7 +196046,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000014", @@ -180080,7 +196068,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000015", @@ -180100,7 +196090,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000016", @@ -180120,7 +196112,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000017", @@ -180140,7 +196134,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000018", @@ -180160,7 +196156,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000019", @@ -180180,7 +196178,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000020", @@ -180200,7 +196200,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000021", @@ -180220,7 +196222,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000022", @@ -180240,7 +196244,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000023", @@ -180260,7 +196266,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000024", @@ -180280,7 +196288,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000025", @@ -180300,7 +196310,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000026", @@ -180320,7 +196332,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000027", @@ -180340,7 +196354,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000028", @@ -180360,7 +196376,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000029", @@ -180380,7 +196398,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000030", @@ -180400,7 +196420,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000031", @@ -180420,7 +196442,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000032", @@ -180440,7 +196464,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@E09000033", @@ -180460,7 +196486,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000001", @@ -180480,7 +196508,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000002", @@ -180500,7 +196530,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000003", @@ -180520,7 +196552,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000004", @@ -180540,7 +196574,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000005", @@ -180560,7 +196596,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000006", @@ -180580,7 +196618,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000007", @@ -180600,7 +196640,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000008", @@ -180620,7 +196662,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000009", @@ -180640,7 +196684,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000010", @@ -180660,7 +196706,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@N09000011", @@ -180680,7 +196728,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000005", @@ -180700,7 +196750,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000006", @@ -180720,7 +196772,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000008", @@ -180740,7 +196794,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000010", @@ -180760,7 +196816,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000011", @@ -180780,7 +196838,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000013", @@ -180800,7 +196860,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000014", @@ -180820,7 +196882,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000017", @@ -180840,7 +196904,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000018", @@ -180860,7 +196926,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000019", @@ -180880,7 +196948,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000020", @@ -180900,7 +196970,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000021", @@ -180920,7 +196992,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000023", @@ -180940,7 +197014,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000026", @@ -180960,7 +197036,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000027", @@ -180980,7 +197058,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000028", @@ -181000,7 +197080,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000029", @@ -181020,7 +197102,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000030", @@ -181040,7 +197124,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000033", @@ -181060,7 +197146,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000034", @@ -181080,7 +197168,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000035", @@ -181100,7 +197190,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000036", @@ -181120,7 +197212,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000038", @@ -181140,7 +197234,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000039", @@ -181160,7 +197256,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000040", @@ -181180,7 +197278,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000041", @@ -181200,7 +197300,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000042", @@ -181220,7 +197322,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000045", @@ -181240,7 +197344,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000047", @@ -181260,7 +197366,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000048", @@ -181280,7 +197388,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000049", @@ -181300,7 +197410,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@S12000050", @@ -181320,7 +197432,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000001", @@ -181340,7 +197454,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000002", @@ -181360,7 +197476,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000003", @@ -181380,7 +197498,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000004", @@ -181400,7 +197520,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000005", @@ -181420,7 +197542,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000006", @@ -181440,7 +197564,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000008", @@ -181460,7 +197586,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000009", @@ -181480,7 +197608,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000010", @@ -181500,7 +197630,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000011", @@ -181520,7 +197652,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000012", @@ -181540,7 +197674,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000013", @@ -181560,7 +197696,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000014", @@ -181580,7 +197718,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000015", @@ -181600,7 +197740,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000016", @@ -181620,7 +197762,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000018", @@ -181640,7 +197784,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000019", @@ -181660,7 +197806,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000020", @@ -181680,7 +197828,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000021", @@ -181700,7 +197850,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000022", @@ -181720,7 +197872,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000023", @@ -181740,7 +197894,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.30_40@W06000024", @@ -181760,7 +197916,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001063", @@ -181780,7 +197938,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001064", @@ -181800,7 +197960,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001065", @@ -181820,7 +197982,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001066", @@ -181840,7 +198004,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001067", @@ -181860,7 +198026,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001068", @@ -181880,7 +198048,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001069", @@ -181900,7 +198070,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001070", @@ -181920,7 +198092,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001071", @@ -181940,7 +198114,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001072", @@ -181960,7 +198136,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001073", @@ -181980,7 +198158,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001074", @@ -182000,7 +198180,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001075", @@ -182020,7 +198202,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001076", @@ -182040,7 +198224,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001077", @@ -182060,7 +198246,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001078", @@ -182080,7 +198268,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001079", @@ -182100,7 +198290,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001080", @@ -182120,7 +198312,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001081", @@ -182140,7 +198334,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001082", @@ -182160,7 +198356,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001083", @@ -182180,7 +198378,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001084", @@ -182200,7 +198400,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001085", @@ -182220,7 +198422,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001086", @@ -182240,7 +198444,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001087", @@ -182260,7 +198466,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001088", @@ -182280,7 +198488,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001089", @@ -182300,7 +198510,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001090", @@ -182320,7 +198532,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001091", @@ -182340,7 +198554,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001092", @@ -182360,7 +198576,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001093", @@ -182380,7 +198598,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001094", @@ -182400,7 +198620,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001095", @@ -182420,7 +198642,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001096", @@ -182440,7 +198664,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001097", @@ -182460,7 +198686,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001098", @@ -182480,7 +198708,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001099", @@ -182500,7 +198730,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001100", @@ -182520,7 +198752,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001101", @@ -182540,7 +198774,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001102", @@ -182560,7 +198796,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001103", @@ -182580,7 +198818,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001104", @@ -182600,7 +198840,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001105", @@ -182620,7 +198862,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001106", @@ -182640,7 +198884,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001107", @@ -182660,7 +198906,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001108", @@ -182680,7 +198928,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001109", @@ -182700,7 +198950,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001110", @@ -182720,7 +198972,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001111", @@ -182740,7 +198994,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001112", @@ -182760,7 +199016,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001113", @@ -182780,7 +199038,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001114", @@ -182800,7 +199060,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001115", @@ -182820,7 +199082,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001116", @@ -182840,7 +199104,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001117", @@ -182860,7 +199126,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001118", @@ -182880,7 +199148,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001119", @@ -182900,7 +199170,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001120", @@ -182920,7 +199192,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001121", @@ -182940,7 +199214,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001122", @@ -182960,7 +199236,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001123", @@ -182980,7 +199258,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001124", @@ -183000,7 +199280,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001125", @@ -183020,7 +199302,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001126", @@ -183040,7 +199324,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001127", @@ -183060,7 +199346,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001128", @@ -183080,7 +199368,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001129", @@ -183100,7 +199390,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001130", @@ -183120,7 +199412,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001131", @@ -183140,7 +199434,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001132", @@ -183160,7 +199456,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001133", @@ -183180,7 +199478,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001134", @@ -183200,7 +199500,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001135", @@ -183220,7 +199522,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001136", @@ -183240,7 +199544,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001137", @@ -183260,7 +199566,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001138", @@ -183280,7 +199588,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001139", @@ -183300,7 +199610,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001140", @@ -183320,7 +199632,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001141", @@ -183340,7 +199654,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001142", @@ -183360,7 +199676,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001143", @@ -183380,7 +199698,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001144", @@ -183400,7 +199720,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001145", @@ -183420,7 +199742,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001146", @@ -183440,7 +199764,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001147", @@ -183460,7 +199786,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001148", @@ -183480,7 +199808,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001149", @@ -183500,7 +199830,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001150", @@ -183520,7 +199852,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001151", @@ -183540,7 +199874,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001152", @@ -183560,7 +199896,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001153", @@ -183580,7 +199918,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001154", @@ -183600,7 +199940,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001155", @@ -183620,7 +199962,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001156", @@ -183640,7 +199984,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001157", @@ -183660,7 +200006,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001158", @@ -183680,7 +200028,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001159", @@ -183700,7 +200050,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001160", @@ -183720,7 +200072,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001161", @@ -183740,7 +200094,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001162", @@ -183760,7 +200116,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001163", @@ -183780,7 +200138,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001164", @@ -183800,7 +200160,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001165", @@ -183820,7 +200182,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001166", @@ -183840,7 +200204,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001167", @@ -183860,7 +200226,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001168", @@ -183880,7 +200248,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001169", @@ -183900,7 +200270,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001170", @@ -183920,7 +200292,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001171", @@ -183940,7 +200314,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001172", @@ -183960,7 +200336,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001173", @@ -183980,7 +200358,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001174", @@ -184000,7 +200380,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001175", @@ -184020,7 +200402,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001176", @@ -184040,7 +200424,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001177", @@ -184060,7 +200446,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001178", @@ -184080,7 +200468,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001179", @@ -184100,7 +200490,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001180", @@ -184120,7 +200512,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001181", @@ -184140,7 +200534,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001182", @@ -184160,7 +200556,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001183", @@ -184180,7 +200578,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001184", @@ -184200,7 +200600,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001185", @@ -184220,7 +200622,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001186", @@ -184240,7 +200644,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001187", @@ -184260,7 +200666,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001188", @@ -184280,7 +200688,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001189", @@ -184300,7 +200710,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001190", @@ -184320,7 +200732,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001191", @@ -184340,7 +200754,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001192", @@ -184360,7 +200776,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001193", @@ -184380,7 +200798,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001194", @@ -184400,7 +200820,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001195", @@ -184420,7 +200842,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001196", @@ -184440,7 +200864,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001197", @@ -184460,7 +200886,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001198", @@ -184480,7 +200908,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001199", @@ -184500,7 +200930,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001200", @@ -184520,7 +200952,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001201", @@ -184540,7 +200974,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001202", @@ -184560,7 +200996,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001203", @@ -184580,7 +201018,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001204", @@ -184600,7 +201040,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001205", @@ -184620,7 +201062,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001206", @@ -184640,7 +201084,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001207", @@ -184660,7 +201106,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001208", @@ -184680,7 +201128,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001209", @@ -184700,7 +201150,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001210", @@ -184720,7 +201172,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001211", @@ -184740,7 +201194,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001212", @@ -184760,7 +201216,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001213", @@ -184780,7 +201238,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001214", @@ -184800,7 +201260,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001215", @@ -184820,7 +201282,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001216", @@ -184840,7 +201304,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001217", @@ -184860,7 +201326,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001218", @@ -184880,7 +201348,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001219", @@ -184900,7 +201370,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001220", @@ -184920,7 +201392,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001221", @@ -184940,7 +201414,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001222", @@ -184960,7 +201436,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001223", @@ -184980,7 +201458,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001224", @@ -185000,7 +201480,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001225", @@ -185020,7 +201502,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001226", @@ -185040,7 +201524,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001227", @@ -185060,7 +201546,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001228", @@ -185080,7 +201568,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001229", @@ -185100,7 +201590,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001230", @@ -185120,7 +201612,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001231", @@ -185140,7 +201634,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001232", @@ -185160,7 +201656,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001233", @@ -185180,7 +201678,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001234", @@ -185200,7 +201700,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001235", @@ -185220,7 +201722,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001236", @@ -185240,7 +201744,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001237", @@ -185260,7 +201766,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001238", @@ -185280,7 +201788,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001239", @@ -185300,7 +201810,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001240", @@ -185320,7 +201832,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001241", @@ -185340,7 +201854,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001242", @@ -185360,7 +201876,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001243", @@ -185380,7 +201898,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001244", @@ -185400,7 +201920,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001245", @@ -185420,7 +201942,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001246", @@ -185440,7 +201964,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001247", @@ -185460,7 +201986,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001248", @@ -185480,7 +202008,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001249", @@ -185500,7 +202030,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001250", @@ -185520,7 +202052,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001251", @@ -185540,7 +202074,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001252", @@ -185560,7 +202096,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001253", @@ -185580,7 +202118,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001254", @@ -185600,7 +202140,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001255", @@ -185620,7 +202162,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001256", @@ -185640,7 +202184,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001257", @@ -185660,7 +202206,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001258", @@ -185680,7 +202228,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001259", @@ -185700,7 +202250,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001260", @@ -185720,7 +202272,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001261", @@ -185740,7 +202294,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001262", @@ -185760,7 +202316,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001263", @@ -185780,7 +202338,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001264", @@ -185800,7 +202360,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001265", @@ -185820,7 +202382,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001266", @@ -185840,7 +202404,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001267", @@ -185860,7 +202426,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001268", @@ -185880,7 +202448,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001269", @@ -185900,7 +202470,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001270", @@ -185920,7 +202492,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001271", @@ -185940,7 +202514,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001272", @@ -185960,7 +202536,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001273", @@ -185980,7 +202558,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001274", @@ -186000,7 +202580,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001275", @@ -186020,7 +202602,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001276", @@ -186040,7 +202624,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001277", @@ -186060,7 +202646,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001278", @@ -186080,7 +202668,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001279", @@ -186100,7 +202690,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001280", @@ -186120,7 +202712,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001281", @@ -186140,7 +202734,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001282", @@ -186160,7 +202756,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001283", @@ -186180,7 +202778,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001284", @@ -186200,7 +202800,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001285", @@ -186220,7 +202822,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001286", @@ -186240,7 +202844,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001287", @@ -186260,7 +202866,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001288", @@ -186280,7 +202888,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001289", @@ -186300,7 +202910,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001290", @@ -186320,7 +202932,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001291", @@ -186340,7 +202954,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001292", @@ -186360,7 +202976,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001293", @@ -186380,7 +202998,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001294", @@ -186400,7 +203020,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001295", @@ -186420,7 +203042,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001296", @@ -186440,7 +203064,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001297", @@ -186460,7 +203086,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001298", @@ -186480,7 +203108,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001299", @@ -186500,7 +203130,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001300", @@ -186520,7 +203152,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001301", @@ -186540,7 +203174,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001302", @@ -186560,7 +203196,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001303", @@ -186580,7 +203218,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001304", @@ -186600,7 +203240,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001305", @@ -186620,7 +203262,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001306", @@ -186640,7 +203284,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001307", @@ -186660,7 +203306,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001308", @@ -186680,7 +203328,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001309", @@ -186700,7 +203350,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001310", @@ -186720,7 +203372,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001311", @@ -186740,7 +203394,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001312", @@ -186760,7 +203416,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001313", @@ -186780,7 +203438,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001314", @@ -186800,7 +203460,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001315", @@ -186820,7 +203482,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001316", @@ -186840,7 +203504,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001317", @@ -186860,7 +203526,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001318", @@ -186880,7 +203548,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001319", @@ -186900,7 +203570,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001320", @@ -186920,7 +203592,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001321", @@ -186940,7 +203614,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001322", @@ -186960,7 +203636,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001323", @@ -186980,7 +203658,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001324", @@ -187000,7 +203680,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001325", @@ -187020,7 +203702,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001326", @@ -187040,7 +203724,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001327", @@ -187060,7 +203746,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001328", @@ -187080,7 +203768,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001329", @@ -187100,7 +203790,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001330", @@ -187120,7 +203812,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001331", @@ -187140,7 +203834,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001332", @@ -187160,7 +203856,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001333", @@ -187180,7 +203878,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001334", @@ -187200,7 +203900,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001335", @@ -187220,7 +203922,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001336", @@ -187240,7 +203944,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001337", @@ -187260,7 +203966,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001338", @@ -187280,7 +203988,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001339", @@ -187300,7 +204010,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001340", @@ -187320,7 +204032,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001341", @@ -187340,7 +204054,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001342", @@ -187360,7 +204076,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001343", @@ -187380,7 +204098,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001344", @@ -187400,7 +204120,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001345", @@ -187420,7 +204142,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001346", @@ -187440,7 +204164,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001347", @@ -187460,7 +204186,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001348", @@ -187480,7 +204208,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001349", @@ -187500,7 +204230,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001350", @@ -187520,7 +204252,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001351", @@ -187540,7 +204274,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001352", @@ -187560,7 +204296,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001353", @@ -187580,7 +204318,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001354", @@ -187600,7 +204340,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001355", @@ -187620,7 +204362,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001356", @@ -187640,7 +204384,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001357", @@ -187660,7 +204406,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001358", @@ -187680,7 +204428,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001359", @@ -187700,7 +204450,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001360", @@ -187720,7 +204472,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001361", @@ -187740,7 +204494,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001362", @@ -187760,7 +204516,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001363", @@ -187780,7 +204538,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001364", @@ -187800,7 +204560,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001365", @@ -187820,7 +204582,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001366", @@ -187840,7 +204604,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001367", @@ -187860,7 +204626,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001368", @@ -187880,7 +204648,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001369", @@ -187900,7 +204670,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001370", @@ -187920,7 +204692,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001371", @@ -187940,7 +204714,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001372", @@ -187960,7 +204736,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001373", @@ -187980,7 +204758,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001374", @@ -188000,7 +204780,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001375", @@ -188020,7 +204802,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001376", @@ -188040,7 +204824,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001377", @@ -188060,7 +204846,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001378", @@ -188080,7 +204868,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001379", @@ -188100,7 +204890,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001380", @@ -188120,7 +204912,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001381", @@ -188140,7 +204934,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001382", @@ -188160,7 +204956,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001383", @@ -188180,7 +204978,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001384", @@ -188200,7 +205000,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001385", @@ -188220,7 +205022,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001386", @@ -188240,7 +205044,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001387", @@ -188260,7 +205066,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001388", @@ -188280,7 +205088,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001389", @@ -188300,7 +205110,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001390", @@ -188320,7 +205132,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001391", @@ -188340,7 +205154,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001392", @@ -188360,7 +205176,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001393", @@ -188380,7 +205198,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001394", @@ -188400,7 +205220,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001395", @@ -188420,7 +205242,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001396", @@ -188440,7 +205264,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001397", @@ -188460,7 +205286,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001398", @@ -188480,7 +205308,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001399", @@ -188500,7 +205330,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001400", @@ -188520,7 +205352,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001401", @@ -188540,7 +205374,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001402", @@ -188560,7 +205396,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001403", @@ -188580,7 +205418,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001404", @@ -188600,7 +205440,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001405", @@ -188620,7 +205462,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001406", @@ -188640,7 +205484,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001407", @@ -188660,7 +205506,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001408", @@ -188680,7 +205528,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001409", @@ -188700,7 +205550,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001410", @@ -188720,7 +205572,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001411", @@ -188740,7 +205594,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001412", @@ -188760,7 +205616,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001413", @@ -188780,7 +205638,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001414", @@ -188800,7 +205660,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001415", @@ -188820,7 +205682,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001416", @@ -188840,7 +205704,9 @@ "geography_level": "constituency", "geography_id": "E14001416" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001417", @@ -188860,7 +205726,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001418", @@ -188880,7 +205748,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001419", @@ -188900,7 +205770,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001420", @@ -188920,7 +205792,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001421", @@ -188940,7 +205814,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001422", @@ -188960,7 +205836,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001423", @@ -188980,7 +205858,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001424", @@ -189000,7 +205880,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001425", @@ -189020,7 +205902,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001426", @@ -189040,7 +205924,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001427", @@ -189060,7 +205946,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001428", @@ -189080,7 +205968,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001429", @@ -189100,7 +205990,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001430", @@ -189120,7 +206012,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001431", @@ -189140,7 +206034,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001432", @@ -189160,7 +206056,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001433", @@ -189180,7 +206078,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001434", @@ -189200,7 +206100,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001435", @@ -189220,7 +206122,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001436", @@ -189240,7 +206144,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001437", @@ -189260,7 +206166,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001438", @@ -189280,7 +206188,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001439", @@ -189300,7 +206210,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001440", @@ -189320,7 +206232,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001441", @@ -189340,7 +206254,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001442", @@ -189360,7 +206276,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001443", @@ -189380,7 +206298,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001444", @@ -189400,7 +206320,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001445", @@ -189420,7 +206342,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001446", @@ -189440,7 +206364,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001447", @@ -189460,7 +206386,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001448", @@ -189480,7 +206408,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001449", @@ -189500,7 +206430,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001450", @@ -189520,7 +206452,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001451", @@ -189540,7 +206474,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001452", @@ -189560,7 +206496,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001453", @@ -189580,7 +206518,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001454", @@ -189600,7 +206540,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001455", @@ -189620,7 +206562,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001456", @@ -189640,7 +206584,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001457", @@ -189660,7 +206606,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001458", @@ -189680,7 +206628,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001459", @@ -189700,7 +206650,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001460", @@ -189720,7 +206672,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001461", @@ -189740,7 +206694,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001462", @@ -189760,7 +206716,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001463", @@ -189780,7 +206738,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001464", @@ -189800,7 +206760,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001465", @@ -189820,7 +206782,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001466", @@ -189840,7 +206804,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001467", @@ -189860,7 +206826,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001468", @@ -189880,7 +206848,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001469", @@ -189900,7 +206870,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001470", @@ -189920,7 +206892,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001471", @@ -189940,7 +206914,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001472", @@ -189960,7 +206936,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001473", @@ -189980,7 +206958,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001474", @@ -190000,7 +206980,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001475", @@ -190020,7 +207002,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001476", @@ -190040,7 +207024,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001477", @@ -190060,7 +207046,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001478", @@ -190080,7 +207068,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001479", @@ -190100,7 +207090,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001480", @@ -190120,7 +207112,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001481", @@ -190140,7 +207134,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001482", @@ -190160,7 +207156,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001483", @@ -190180,7 +207178,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001484", @@ -190200,7 +207200,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001485", @@ -190220,7 +207222,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001486", @@ -190240,7 +207244,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001487", @@ -190260,7 +207266,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001488", @@ -190280,7 +207288,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001489", @@ -190300,7 +207310,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001490", @@ -190320,7 +207332,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001491", @@ -190340,7 +207354,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001492", @@ -190360,7 +207376,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001493", @@ -190380,7 +207398,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001494", @@ -190400,7 +207420,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001495", @@ -190420,7 +207442,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001496", @@ -190440,7 +207464,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001497", @@ -190460,7 +207486,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001498", @@ -190480,7 +207508,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001499", @@ -190500,7 +207530,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001500", @@ -190520,7 +207552,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001501", @@ -190540,7 +207574,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001502", @@ -190560,7 +207596,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001503", @@ -190580,7 +207618,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001504", @@ -190600,7 +207640,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001505", @@ -190620,7 +207662,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001506", @@ -190640,7 +207684,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001507", @@ -190660,7 +207706,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001508", @@ -190680,7 +207728,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001509", @@ -190700,7 +207750,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001510", @@ -190720,7 +207772,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001511", @@ -190740,7 +207794,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001512", @@ -190760,7 +207816,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001513", @@ -190780,7 +207838,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001514", @@ -190800,7 +207860,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001515", @@ -190820,7 +207882,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001516", @@ -190840,7 +207904,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001517", @@ -190860,7 +207926,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001518", @@ -190880,7 +207948,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001519", @@ -190900,7 +207970,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001520", @@ -190920,7 +207992,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001521", @@ -190940,7 +208014,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001522", @@ -190960,7 +208036,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001523", @@ -190980,7 +208058,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001524", @@ -191000,7 +208080,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001525", @@ -191020,7 +208102,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001526", @@ -191040,7 +208124,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001527", @@ -191060,7 +208146,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001528", @@ -191080,7 +208168,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001529", @@ -191100,7 +208190,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001530", @@ -191120,7 +208212,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001531", @@ -191140,7 +208234,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001532", @@ -191160,7 +208256,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001533", @@ -191180,7 +208278,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001534", @@ -191200,7 +208300,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001535", @@ -191220,7 +208322,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001536", @@ -191240,7 +208344,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001537", @@ -191260,7 +208366,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001538", @@ -191280,7 +208388,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001539", @@ -191300,7 +208410,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001540", @@ -191320,7 +208432,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001541", @@ -191340,7 +208454,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001542", @@ -191360,7 +208476,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001543", @@ -191380,7 +208498,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001544", @@ -191400,7 +208520,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001545", @@ -191420,7 +208542,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001546", @@ -191440,7 +208564,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001547", @@ -191460,7 +208586,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001548", @@ -191480,7 +208608,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001549", @@ -191500,7 +208630,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001550", @@ -191520,7 +208652,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001551", @@ -191540,7 +208674,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001552", @@ -191560,7 +208696,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001553", @@ -191580,7 +208718,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001554", @@ -191600,7 +208740,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001555", @@ -191620,7 +208762,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001556", @@ -191640,7 +208784,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001557", @@ -191660,7 +208806,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001558", @@ -191680,7 +208828,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001559", @@ -191700,7 +208850,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001560", @@ -191720,7 +208872,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001561", @@ -191740,7 +208894,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001562", @@ -191760,7 +208916,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001563", @@ -191780,7 +208938,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001564", @@ -191800,7 +208960,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001565", @@ -191820,7 +208982,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001566", @@ -191840,7 +209004,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001567", @@ -191860,7 +209026,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001568", @@ -191880,7 +209048,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001569", @@ -191900,7 +209070,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001570", @@ -191920,7 +209092,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001571", @@ -191940,7 +209114,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001572", @@ -191960,7 +209136,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001573", @@ -191980,7 +209158,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001574", @@ -192000,7 +209180,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001575", @@ -192020,7 +209202,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001576", @@ -192040,7 +209224,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001577", @@ -192060,7 +209246,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001578", @@ -192080,7 +209268,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001579", @@ -192100,7 +209290,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001580", @@ -192120,7 +209312,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001581", @@ -192140,7 +209334,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001582", @@ -192160,7 +209356,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001583", @@ -192180,7 +209378,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001584", @@ -192200,7 +209400,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001585", @@ -192220,7 +209422,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001586", @@ -192240,7 +209444,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001587", @@ -192260,7 +209466,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001588", @@ -192280,7 +209488,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001589", @@ -192300,7 +209510,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001590", @@ -192320,7 +209532,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001591", @@ -192340,7 +209554,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001592", @@ -192360,7 +209576,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001593", @@ -192380,7 +209598,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001594", @@ -192400,7 +209620,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001595", @@ -192420,7 +209642,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001596", @@ -192440,7 +209664,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001597", @@ -192460,7 +209686,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001598", @@ -192480,7 +209708,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001599", @@ -192500,7 +209730,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001600", @@ -192520,7 +209752,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001601", @@ -192540,7 +209774,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001602", @@ -192560,7 +209796,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001603", @@ -192580,7 +209818,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001604", @@ -192600,7 +209840,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E14001605", @@ -192620,7 +209862,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000001", @@ -192640,7 +209884,9 @@ "geography_level": "constituency", "geography_id": "N05000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000002", @@ -192660,7 +209906,9 @@ "geography_level": "constituency", "geography_id": "N05000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000003", @@ -192680,7 +209928,9 @@ "geography_level": "constituency", "geography_id": "N05000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000004", @@ -192700,7 +209950,9 @@ "geography_level": "constituency", "geography_id": "N05000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000005", @@ -192720,7 +209972,9 @@ "geography_level": "constituency", "geography_id": "N05000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000006", @@ -192740,7 +209994,9 @@ "geography_level": "constituency", "geography_id": "N05000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000007", @@ -192760,7 +210016,9 @@ "geography_level": "constituency", "geography_id": "N05000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000008", @@ -192780,7 +210038,9 @@ "geography_level": "constituency", "geography_id": "N05000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000009", @@ -192800,7 +210060,9 @@ "geography_level": "constituency", "geography_id": "N05000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000010", @@ -192820,7 +210082,9 @@ "geography_level": "constituency", "geography_id": "N05000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000011", @@ -192840,7 +210104,9 @@ "geography_level": "constituency", "geography_id": "N05000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000012", @@ -192860,7 +210126,9 @@ "geography_level": "constituency", "geography_id": "N05000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000013", @@ -192880,7 +210148,9 @@ "geography_level": "constituency", "geography_id": "N05000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000014", @@ -192900,7 +210170,9 @@ "geography_level": "constituency", "geography_id": "N05000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000015", @@ -192920,7 +210192,9 @@ "geography_level": "constituency", "geography_id": "N05000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000016", @@ -192940,7 +210214,9 @@ "geography_level": "constituency", "geography_id": "N05000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000017", @@ -192960,7 +210236,9 @@ "geography_level": "constituency", "geography_id": "N05000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N05000018", @@ -192980,7 +210258,9 @@ "geography_level": "constituency", "geography_id": "N05000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000021", @@ -193000,7 +210280,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000027", @@ -193020,7 +210302,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000045", @@ -193040,7 +210324,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000048", @@ -193060,7 +210346,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000051", @@ -193080,7 +210368,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000060", @@ -193100,7 +210390,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000061", @@ -193120,7 +210412,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000062", @@ -193140,7 +210434,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000063", @@ -193160,7 +210456,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000064", @@ -193180,7 +210478,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000065", @@ -193200,7 +210500,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000066", @@ -193220,7 +210522,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000067", @@ -193240,7 +210544,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000068", @@ -193260,7 +210566,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000069", @@ -193280,7 +210588,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000070", @@ -193300,7 +210610,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000071", @@ -193320,7 +210632,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000072", @@ -193340,7 +210654,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000073", @@ -193360,7 +210676,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000074", @@ -193380,7 +210698,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000075", @@ -193400,7 +210720,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000076", @@ -193420,7 +210742,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000077", @@ -193440,7 +210764,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000078", @@ -193460,7 +210786,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000079", @@ -193480,7 +210808,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000080", @@ -193500,7 +210830,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000081", @@ -193520,7 +210852,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000082", @@ -193540,7 +210874,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000083", @@ -193560,7 +210896,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000084", @@ -193580,7 +210918,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000085", @@ -193600,7 +210940,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000086", @@ -193620,7 +210962,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000087", @@ -193640,7 +210984,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000088", @@ -193660,7 +211006,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000089", @@ -193680,7 +211028,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000090", @@ -193700,7 +211050,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000091", @@ -193720,7 +211072,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000092", @@ -193740,7 +211094,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000093", @@ -193760,7 +211116,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000094", @@ -193780,7 +211138,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000095", @@ -193800,7 +211160,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000096", @@ -193820,7 +211182,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000097", @@ -193840,7 +211204,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000098", @@ -193860,7 +211226,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000099", @@ -193880,7 +211248,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000100", @@ -193900,7 +211270,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000101", @@ -193920,7 +211292,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000102", @@ -193940,7 +211314,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000103", @@ -193960,7 +211336,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000104", @@ -193980,7 +211358,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000105", @@ -194000,7 +211380,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000106", @@ -194020,7 +211402,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000107", @@ -194040,7 +211424,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000108", @@ -194060,7 +211446,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000109", @@ -194080,7 +211468,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000110", @@ -194100,7 +211490,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S14000111", @@ -194120,7 +211512,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000081", @@ -194140,7 +211534,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000082", @@ -194160,7 +211556,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000083", @@ -194180,7 +211578,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000084", @@ -194200,7 +211600,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000085", @@ -194220,7 +211622,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000086", @@ -194240,7 +211644,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000087", @@ -194260,7 +211666,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000088", @@ -194280,7 +211688,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000089", @@ -194300,7 +211710,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000090", @@ -194320,7 +211732,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000091", @@ -194340,7 +211754,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000092", @@ -194360,7 +211776,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000093", @@ -194380,7 +211798,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000094", @@ -194400,7 +211820,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000095", @@ -194420,7 +211842,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000096", @@ -194440,7 +211864,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000097", @@ -194460,7 +211886,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000098", @@ -194480,7 +211908,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000099", @@ -194500,7 +211930,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000100", @@ -194520,7 +211952,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000101", @@ -194540,7 +211974,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000102", @@ -194560,7 +211996,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000103", @@ -194580,7 +212018,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000104", @@ -194600,7 +212040,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000105", @@ -194620,7 +212062,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000106", @@ -194640,7 +212084,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000107", @@ -194660,7 +212106,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000108", @@ -194680,7 +212128,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000109", @@ -194700,7 +212150,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000110", @@ -194720,7 +212172,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000111", @@ -194740,7 +212194,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W07000112", @@ -194760,7 +212216,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000001", @@ -194780,7 +212238,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000002", @@ -194800,7 +212260,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000003", @@ -194820,7 +212282,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000004", @@ -194840,7 +212304,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000005", @@ -194860,7 +212326,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000006", @@ -194880,7 +212348,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000007", @@ -194900,7 +212370,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000008", @@ -194920,7 +212392,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000009", @@ -194940,7 +212414,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000010", @@ -194960,7 +212436,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000011", @@ -194980,7 +212458,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000012", @@ -195000,7 +212480,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000013", @@ -195020,7 +212502,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000014", @@ -195040,7 +212524,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000015", @@ -195060,7 +212546,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000016", @@ -195080,7 +212568,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000017", @@ -195100,7 +212590,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000018", @@ -195120,7 +212612,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000019", @@ -195140,7 +212634,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000020", @@ -195160,7 +212656,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000021", @@ -195180,7 +212678,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000022", @@ -195200,7 +212700,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000023", @@ -195220,7 +212722,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000024", @@ -195240,7 +212744,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000025", @@ -195260,7 +212766,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000026", @@ -195280,7 +212788,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000027", @@ -195300,7 +212810,9 @@ "geography_level": "local_authority", "geography_id": "E06000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000030", @@ -195320,7 +212832,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000031", @@ -195340,7 +212854,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000032", @@ -195360,7 +212876,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000033", @@ -195380,7 +212898,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000034", @@ -195400,7 +212920,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000035", @@ -195420,7 +212942,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000036", @@ -195440,7 +212964,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000037", @@ -195460,7 +212986,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000038", @@ -195480,7 +213008,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000039", @@ -195500,7 +213030,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000040", @@ -195520,7 +213052,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000041", @@ -195540,7 +213074,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000042", @@ -195560,7 +213096,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000043", @@ -195580,7 +213118,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000044", @@ -195600,7 +213140,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000045", @@ -195620,7 +213162,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000046", @@ -195640,7 +213184,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000047", @@ -195660,7 +213206,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000049", @@ -195680,7 +213228,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000050", @@ -195700,7 +213250,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000051", @@ -195720,7 +213272,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000052", @@ -195740,7 +213294,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000053", @@ -195760,7 +213316,9 @@ "geography_level": "local_authority", "geography_id": "E06000053" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000054", @@ -195780,7 +213338,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000055", @@ -195800,7 +213360,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000056", @@ -195820,7 +213382,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000057", @@ -195840,7 +213404,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000058", @@ -195860,7 +213426,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000059", @@ -195880,7 +213448,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000060", @@ -195900,7 +213470,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000061", @@ -195920,7 +213492,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000062", @@ -195940,7 +213514,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000063", @@ -195960,7 +213536,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000064", @@ -195980,7 +213558,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000065", @@ -196000,7 +213580,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E06000066", @@ -196020,7 +213602,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000008", @@ -196040,7 +213624,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000009", @@ -196060,7 +213646,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000010", @@ -196080,7 +213668,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000011", @@ -196100,7 +213690,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000012", @@ -196120,7 +213712,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000032", @@ -196140,7 +213734,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000033", @@ -196160,7 +213756,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000034", @@ -196180,7 +213778,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000035", @@ -196200,7 +213800,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000036", @@ -196220,7 +213822,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000037", @@ -196240,7 +213844,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000038", @@ -196260,7 +213866,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000039", @@ -196280,7 +213888,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000040", @@ -196300,7 +213910,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000041", @@ -196320,7 +213932,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000042", @@ -196340,7 +213954,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000043", @@ -196360,7 +213976,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000044", @@ -196380,7 +213998,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000045", @@ -196400,7 +214020,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000046", @@ -196420,7 +214042,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000047", @@ -196440,7 +214064,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000061", @@ -196460,7 +214086,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000062", @@ -196480,7 +214108,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000063", @@ -196500,7 +214130,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000064", @@ -196520,7 +214152,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000065", @@ -196540,7 +214174,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000066", @@ -196560,7 +214196,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000067", @@ -196580,7 +214218,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000068", @@ -196600,7 +214240,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000069", @@ -196620,7 +214262,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000070", @@ -196640,7 +214284,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000071", @@ -196660,7 +214306,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000072", @@ -196680,7 +214328,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000073", @@ -196700,7 +214350,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000074", @@ -196720,7 +214372,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000075", @@ -196740,7 +214394,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000076", @@ -196760,7 +214416,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000077", @@ -196780,7 +214438,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000078", @@ -196800,7 +214460,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000079", @@ -196820,7 +214482,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000080", @@ -196840,7 +214504,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000081", @@ -196860,7 +214526,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000082", @@ -196880,7 +214548,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000083", @@ -196900,7 +214570,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000084", @@ -196920,7 +214592,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000085", @@ -196940,7 +214614,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000086", @@ -196960,7 +214636,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000087", @@ -196980,7 +214658,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000088", @@ -197000,7 +214680,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000089", @@ -197020,7 +214702,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000090", @@ -197040,7 +214724,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000091", @@ -197060,7 +214746,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000092", @@ -197080,7 +214768,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000093", @@ -197100,7 +214790,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000094", @@ -197120,7 +214812,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000095", @@ -197140,7 +214834,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000096", @@ -197160,7 +214856,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000098", @@ -197180,7 +214878,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000099", @@ -197200,7 +214900,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000102", @@ -197220,7 +214922,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000103", @@ -197240,7 +214944,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000105", @@ -197260,7 +214966,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000106", @@ -197280,7 +214988,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000107", @@ -197300,7 +215010,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000108", @@ -197320,7 +215032,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000109", @@ -197340,7 +215054,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000110", @@ -197360,7 +215076,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000111", @@ -197380,7 +215098,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000112", @@ -197400,7 +215120,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000113", @@ -197420,7 +215142,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000114", @@ -197440,7 +215164,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000115", @@ -197460,7 +215186,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000116", @@ -197480,7 +215208,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000117", @@ -197500,7 +215230,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000118", @@ -197520,7 +215252,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000119", @@ -197540,7 +215274,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000120", @@ -197560,7 +215296,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000121", @@ -197580,7 +215318,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000122", @@ -197600,7 +215340,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000123", @@ -197620,7 +215362,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000124", @@ -197640,7 +215384,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000125", @@ -197660,7 +215406,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000126", @@ -197680,7 +215428,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000127", @@ -197700,7 +215450,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000128", @@ -197720,7 +215472,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000129", @@ -197740,7 +215494,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000130", @@ -197760,7 +215516,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000131", @@ -197780,7 +215538,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000132", @@ -197800,7 +215560,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000133", @@ -197820,7 +215582,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000134", @@ -197840,7 +215604,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000135", @@ -197860,7 +215626,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000136", @@ -197880,7 +215648,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000137", @@ -197900,7 +215670,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000138", @@ -197920,7 +215692,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000139", @@ -197940,7 +215714,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000140", @@ -197960,7 +215736,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000141", @@ -197980,7 +215758,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000142", @@ -198000,7 +215780,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000143", @@ -198020,7 +215802,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000144", @@ -198040,7 +215824,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000145", @@ -198060,7 +215846,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000146", @@ -198080,7 +215868,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000147", @@ -198100,7 +215890,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000148", @@ -198120,7 +215912,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000149", @@ -198140,7 +215934,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000170", @@ -198160,7 +215956,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000171", @@ -198180,7 +215978,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000172", @@ -198200,7 +216000,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000173", @@ -198220,7 +216022,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000174", @@ -198240,7 +216044,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000175", @@ -198260,7 +216066,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000176", @@ -198280,7 +216088,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000177", @@ -198300,7 +216110,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000178", @@ -198320,7 +216132,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000179", @@ -198340,7 +216154,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000180", @@ -198360,7 +216176,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000181", @@ -198380,7 +216198,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000192", @@ -198400,7 +216220,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000193", @@ -198420,7 +216242,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000194", @@ -198440,7 +216264,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000195", @@ -198460,7 +216286,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000196", @@ -198480,7 +216308,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000197", @@ -198500,7 +216330,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000198", @@ -198520,7 +216352,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000199", @@ -198540,7 +216374,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000200", @@ -198560,7 +216396,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000202", @@ -198580,7 +216418,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000203", @@ -198600,7 +216440,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000207", @@ -198620,7 +216462,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000208", @@ -198640,7 +216484,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000209", @@ -198660,7 +216506,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000210", @@ -198680,7 +216528,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000211", @@ -198700,7 +216550,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000212", @@ -198720,7 +216572,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000213", @@ -198740,7 +216594,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000214", @@ -198760,7 +216616,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000215", @@ -198780,7 +216638,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000216", @@ -198800,7 +216660,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000217", @@ -198820,7 +216682,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000218", @@ -198840,7 +216704,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000219", @@ -198860,7 +216726,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000220", @@ -198880,7 +216748,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000221", @@ -198900,7 +216770,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000222", @@ -198920,7 +216792,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000223", @@ -198940,7 +216814,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000224", @@ -198960,7 +216836,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000225", @@ -198980,7 +216858,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000226", @@ -199000,7 +216880,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000227", @@ -199020,7 +216902,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000228", @@ -199040,7 +216924,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000229", @@ -199060,7 +216946,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000234", @@ -199080,7 +216968,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000235", @@ -199100,7 +216990,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000236", @@ -199120,7 +217012,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000237", @@ -199140,7 +217034,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000238", @@ -199160,7 +217056,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000239", @@ -199180,7 +217078,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000240", @@ -199200,7 +217100,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000241", @@ -199220,7 +217122,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000242", @@ -199240,7 +217144,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000243", @@ -199260,7 +217166,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000244", @@ -199280,7 +217188,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E07000245", @@ -199300,7 +217210,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000001", @@ -199320,7 +217232,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000002", @@ -199340,7 +217254,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000003", @@ -199360,7 +217276,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000004", @@ -199380,7 +217298,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000005", @@ -199400,7 +217320,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000006", @@ -199420,7 +217342,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000007", @@ -199440,7 +217364,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000008", @@ -199460,7 +217386,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000009", @@ -199480,7 +217408,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000010", @@ -199500,7 +217430,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000011", @@ -199520,7 +217452,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000012", @@ -199540,7 +217474,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000013", @@ -199560,7 +217496,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000014", @@ -199580,7 +217518,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000015", @@ -199600,7 +217540,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000016", @@ -199620,7 +217562,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000017", @@ -199640,7 +217584,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000018", @@ -199660,7 +217606,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000019", @@ -199680,7 +217628,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000021", @@ -199700,7 +217650,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000022", @@ -199720,7 +217672,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000023", @@ -199740,7 +217694,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000024", @@ -199760,7 +217716,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000025", @@ -199780,7 +217738,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000026", @@ -199800,7 +217760,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000027", @@ -199820,7 +217782,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000028", @@ -199840,7 +217804,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000029", @@ -199860,7 +217826,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000030", @@ -199880,7 +217848,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000031", @@ -199900,7 +217870,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000032", @@ -199920,7 +217892,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000033", @@ -199940,7 +217914,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000034", @@ -199960,7 +217936,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000035", @@ -199980,7 +217958,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000036", @@ -200000,7 +217980,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E08000037", @@ -200020,7 +218002,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000001", @@ -200040,7 +218024,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000002", @@ -200060,7 +218046,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000003", @@ -200080,7 +218068,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000004", @@ -200100,7 +218090,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000005", @@ -200120,7 +218112,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000006", @@ -200140,7 +218134,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000007", @@ -200160,7 +218156,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000008", @@ -200180,7 +218178,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000009", @@ -200200,7 +218200,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000010", @@ -200220,7 +218222,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000011", @@ -200240,7 +218244,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000012", @@ -200260,7 +218266,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000013", @@ -200280,7 +218288,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000014", @@ -200300,7 +218310,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000015", @@ -200320,7 +218332,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000016", @@ -200340,7 +218354,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000017", @@ -200360,7 +218376,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000018", @@ -200380,7 +218398,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000019", @@ -200400,7 +218420,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000020", @@ -200420,7 +218442,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000021", @@ -200440,7 +218464,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000022", @@ -200460,7 +218486,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000023", @@ -200480,7 +218508,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000024", @@ -200500,7 +218530,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000025", @@ -200520,7 +218552,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000026", @@ -200540,7 +218574,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000027", @@ -200560,7 +218596,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000028", @@ -200580,7 +218618,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000029", @@ -200600,7 +218640,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000030", @@ -200620,7 +218662,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000031", @@ -200640,7 +218684,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000032", @@ -200660,7 +218706,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@E09000033", @@ -200680,7 +218728,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000001", @@ -200700,7 +218750,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000002", @@ -200720,7 +218772,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000003", @@ -200740,7 +218794,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000004", @@ -200760,7 +218816,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000005", @@ -200780,7 +218838,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000006", @@ -200800,7 +218860,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000007", @@ -200820,7 +218882,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000008", @@ -200840,7 +218904,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000009", @@ -200860,7 +218926,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000010", @@ -200880,7 +218948,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@N09000011", @@ -200900,7 +218970,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000005", @@ -200920,7 +218992,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000006", @@ -200940,7 +219014,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000008", @@ -200960,7 +219036,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000010", @@ -200980,7 +219058,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000011", @@ -201000,7 +219080,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000013", @@ -201020,7 +219102,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000014", @@ -201040,7 +219124,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000017", @@ -201060,7 +219146,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000018", @@ -201080,7 +219168,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000019", @@ -201100,7 +219190,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000020", @@ -201120,7 +219212,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000021", @@ -201140,7 +219234,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000023", @@ -201160,7 +219256,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000026", @@ -201180,7 +219278,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000027", @@ -201200,7 +219300,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000028", @@ -201220,7 +219322,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000029", @@ -201240,7 +219344,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000030", @@ -201260,7 +219366,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000033", @@ -201280,7 +219388,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000034", @@ -201300,7 +219410,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000035", @@ -201320,7 +219432,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000036", @@ -201340,7 +219454,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000038", @@ -201360,7 +219476,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000039", @@ -201380,7 +219498,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000040", @@ -201400,7 +219520,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000041", @@ -201420,7 +219542,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000042", @@ -201440,7 +219564,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000045", @@ -201460,7 +219586,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000047", @@ -201480,7 +219608,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000048", @@ -201500,7 +219630,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000049", @@ -201520,7 +219652,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@S12000050", @@ -201540,7 +219674,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000001", @@ -201560,7 +219696,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000002", @@ -201580,7 +219718,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000003", @@ -201600,7 +219740,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000004", @@ -201620,7 +219762,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000005", @@ -201640,7 +219784,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000006", @@ -201660,7 +219806,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000008", @@ -201680,7 +219828,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000009", @@ -201700,7 +219850,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000010", @@ -201720,7 +219872,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000011", @@ -201740,7 +219894,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000012", @@ -201760,7 +219916,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000013", @@ -201780,7 +219938,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000014", @@ -201800,7 +219960,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000015", @@ -201820,7 +219982,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000016", @@ -201840,7 +220004,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000018", @@ -201860,7 +220026,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000019", @@ -201880,7 +220048,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000020", @@ -201900,7 +220070,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000021", @@ -201920,7 +220092,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000022", @@ -201940,7 +220114,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000023", @@ -201960,7 +220136,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.40_50@W06000024", @@ -201980,7 +220158,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001063", @@ -202000,7 +220180,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001064", @@ -202020,7 +220202,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001065", @@ -202040,7 +220224,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001066", @@ -202060,7 +220246,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001067", @@ -202080,7 +220268,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001068", @@ -202100,7 +220290,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001069", @@ -202120,7 +220312,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001070", @@ -202140,7 +220334,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001071", @@ -202160,7 +220356,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001072", @@ -202180,7 +220378,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001073", @@ -202200,7 +220400,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001074", @@ -202220,7 +220422,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001075", @@ -202240,7 +220444,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001076", @@ -202260,7 +220466,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001077", @@ -202280,7 +220488,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001078", @@ -202300,7 +220510,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001079", @@ -202320,7 +220532,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001080", @@ -202340,7 +220554,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001081", @@ -202360,7 +220576,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001082", @@ -202380,7 +220598,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001083", @@ -202400,7 +220620,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001084", @@ -202420,7 +220642,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001085", @@ -202440,7 +220664,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001086", @@ -202460,7 +220686,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001087", @@ -202480,7 +220708,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001088", @@ -202500,7 +220730,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001089", @@ -202520,7 +220752,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001090", @@ -202540,7 +220774,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001091", @@ -202560,7 +220796,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001092", @@ -202580,7 +220818,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001093", @@ -202600,7 +220840,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001094", @@ -202620,7 +220862,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001095", @@ -202640,7 +220884,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001096", @@ -202660,7 +220906,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001097", @@ -202680,7 +220928,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001098", @@ -202700,7 +220950,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001099", @@ -202720,7 +220972,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001100", @@ -202740,7 +220994,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001101", @@ -202760,7 +221016,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001102", @@ -202780,7 +221038,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001103", @@ -202800,7 +221060,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001104", @@ -202820,7 +221082,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001105", @@ -202840,7 +221104,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001106", @@ -202860,7 +221126,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001107", @@ -202880,7 +221148,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001108", @@ -202900,7 +221170,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001109", @@ -202920,7 +221192,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001110", @@ -202940,7 +221214,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001111", @@ -202960,7 +221236,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001112", @@ -202980,7 +221258,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001113", @@ -203000,7 +221280,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001114", @@ -203020,7 +221302,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001115", @@ -203040,7 +221324,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001116", @@ -203060,7 +221346,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001117", @@ -203080,7 +221368,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001118", @@ -203100,7 +221390,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001119", @@ -203120,7 +221412,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001120", @@ -203140,7 +221434,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001121", @@ -203160,7 +221456,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001122", @@ -203180,7 +221478,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001123", @@ -203200,7 +221500,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001124", @@ -203220,7 +221522,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001125", @@ -203240,7 +221544,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001126", @@ -203260,7 +221566,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001127", @@ -203280,7 +221588,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001128", @@ -203300,7 +221610,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001129", @@ -203320,7 +221632,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001130", @@ -203340,7 +221654,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001131", @@ -203360,7 +221676,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001132", @@ -203380,7 +221698,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001133", @@ -203400,7 +221720,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001134", @@ -203420,7 +221742,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001135", @@ -203440,7 +221764,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001136", @@ -203460,7 +221786,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001137", @@ -203480,7 +221808,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001138", @@ -203500,7 +221830,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001139", @@ -203520,7 +221852,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001140", @@ -203540,7 +221874,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001141", @@ -203560,7 +221896,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001142", @@ -203580,7 +221918,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001143", @@ -203600,7 +221940,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001144", @@ -203620,7 +221962,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001145", @@ -203640,7 +221984,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001146", @@ -203660,7 +222006,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001147", @@ -203680,7 +222028,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001148", @@ -203700,7 +222050,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001149", @@ -203720,7 +222072,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001150", @@ -203740,7 +222094,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001151", @@ -203760,7 +222116,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001152", @@ -203780,7 +222138,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001153", @@ -203800,7 +222160,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001154", @@ -203820,7 +222182,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001155", @@ -203840,7 +222204,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001156", @@ -203860,7 +222226,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001157", @@ -203880,7 +222248,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001158", @@ -203900,7 +222270,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001159", @@ -203920,7 +222292,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001160", @@ -203940,7 +222314,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001161", @@ -203960,7 +222336,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001162", @@ -203980,7 +222358,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001163", @@ -204000,7 +222380,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001164", @@ -204020,7 +222402,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001165", @@ -204040,7 +222424,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001166", @@ -204060,7 +222446,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001167", @@ -204080,7 +222468,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001168", @@ -204100,7 +222490,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001169", @@ -204120,7 +222512,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001170", @@ -204140,7 +222534,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001171", @@ -204160,7 +222556,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001172", @@ -204180,7 +222578,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001173", @@ -204200,7 +222600,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001174", @@ -204220,7 +222622,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001175", @@ -204240,7 +222644,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001176", @@ -204260,7 +222666,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001177", @@ -204280,7 +222688,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001178", @@ -204300,7 +222710,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001179", @@ -204320,7 +222732,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001180", @@ -204340,7 +222754,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001181", @@ -204360,7 +222776,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001182", @@ -204380,7 +222798,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001183", @@ -204400,7 +222820,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001184", @@ -204420,7 +222842,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001185", @@ -204440,7 +222864,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001186", @@ -204460,7 +222886,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001187", @@ -204480,7 +222908,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001188", @@ -204500,7 +222930,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001189", @@ -204520,7 +222952,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001190", @@ -204540,7 +222974,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001191", @@ -204560,7 +222996,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001192", @@ -204580,7 +223018,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001193", @@ -204600,7 +223040,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001194", @@ -204620,7 +223062,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001195", @@ -204640,7 +223084,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001196", @@ -204660,7 +223106,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001197", @@ -204680,7 +223128,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001198", @@ -204700,7 +223150,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001199", @@ -204720,7 +223172,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001200", @@ -204740,7 +223194,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001201", @@ -204760,7 +223216,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001202", @@ -204780,7 +223238,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001203", @@ -204800,7 +223260,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001204", @@ -204820,7 +223282,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001205", @@ -204840,7 +223304,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001206", @@ -204860,7 +223326,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001207", @@ -204880,7 +223348,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001208", @@ -204900,7 +223370,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001209", @@ -204920,7 +223392,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001210", @@ -204940,7 +223414,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001211", @@ -204960,7 +223436,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001212", @@ -204980,7 +223458,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001213", @@ -205000,7 +223480,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001214", @@ -205020,7 +223502,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001215", @@ -205040,7 +223524,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001216", @@ -205060,7 +223546,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001217", @@ -205080,7 +223568,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001218", @@ -205100,7 +223590,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001219", @@ -205120,7 +223612,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001220", @@ -205140,7 +223634,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001221", @@ -205160,7 +223656,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001222", @@ -205180,7 +223678,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001223", @@ -205200,7 +223700,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001224", @@ -205220,7 +223722,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001225", @@ -205240,7 +223744,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001226", @@ -205260,7 +223766,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001227", @@ -205280,7 +223788,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001228", @@ -205300,7 +223810,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001229", @@ -205320,7 +223832,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001230", @@ -205340,7 +223854,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001231", @@ -205360,7 +223876,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001232", @@ -205380,7 +223898,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001233", @@ -205400,7 +223920,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001234", @@ -205420,7 +223942,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001235", @@ -205440,7 +223964,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001236", @@ -205460,7 +223986,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001237", @@ -205480,7 +224008,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001238", @@ -205500,7 +224030,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001239", @@ -205520,7 +224052,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001240", @@ -205540,7 +224074,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001241", @@ -205560,7 +224096,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001242", @@ -205580,7 +224118,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001243", @@ -205600,7 +224140,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001244", @@ -205620,7 +224162,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001245", @@ -205640,7 +224184,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001246", @@ -205660,7 +224206,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001247", @@ -205680,7 +224228,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001248", @@ -205700,7 +224250,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001249", @@ -205720,7 +224272,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001250", @@ -205740,7 +224294,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001251", @@ -205760,7 +224316,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001252", @@ -205780,7 +224338,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001253", @@ -205800,7 +224360,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001254", @@ -205820,7 +224382,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001255", @@ -205840,7 +224404,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001256", @@ -205860,7 +224426,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001257", @@ -205880,7 +224448,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001258", @@ -205900,7 +224470,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001259", @@ -205920,7 +224492,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001260", @@ -205940,7 +224514,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001261", @@ -205960,7 +224536,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001262", @@ -205980,7 +224558,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001263", @@ -206000,7 +224580,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001264", @@ -206020,7 +224602,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001265", @@ -206040,7 +224624,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001266", @@ -206060,7 +224646,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001267", @@ -206080,7 +224668,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001268", @@ -206100,7 +224690,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001269", @@ -206120,7 +224712,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001270", @@ -206140,7 +224734,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001271", @@ -206160,7 +224756,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001272", @@ -206180,7 +224778,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001273", @@ -206200,7 +224800,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001274", @@ -206220,7 +224822,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001275", @@ -206240,7 +224844,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001276", @@ -206260,7 +224866,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001277", @@ -206280,7 +224888,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001278", @@ -206300,7 +224910,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001279", @@ -206320,7 +224932,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001280", @@ -206340,7 +224954,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001281", @@ -206360,7 +224976,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001282", @@ -206380,7 +224998,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001283", @@ -206400,7 +225020,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001284", @@ -206420,7 +225042,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001285", @@ -206440,7 +225064,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001286", @@ -206460,7 +225086,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001287", @@ -206480,7 +225108,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001288", @@ -206500,7 +225130,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001289", @@ -206520,7 +225152,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001290", @@ -206540,7 +225174,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001291", @@ -206560,7 +225196,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001292", @@ -206580,7 +225218,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001293", @@ -206600,7 +225240,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001294", @@ -206620,7 +225262,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001295", @@ -206640,7 +225284,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001296", @@ -206660,7 +225306,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001297", @@ -206680,7 +225328,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001298", @@ -206700,7 +225350,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001299", @@ -206720,7 +225372,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001300", @@ -206740,7 +225394,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001301", @@ -206760,7 +225416,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001302", @@ -206780,7 +225438,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001303", @@ -206800,7 +225460,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001304", @@ -206820,7 +225482,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001305", @@ -206840,7 +225504,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001306", @@ -206860,7 +225526,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001307", @@ -206880,7 +225548,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001308", @@ -206900,7 +225570,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001309", @@ -206920,7 +225592,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001310", @@ -206940,7 +225614,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001311", @@ -206960,7 +225636,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001312", @@ -206980,7 +225658,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001313", @@ -207000,7 +225680,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001314", @@ -207020,7 +225702,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001315", @@ -207040,7 +225724,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001316", @@ -207060,7 +225746,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001317", @@ -207080,7 +225768,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001318", @@ -207100,7 +225790,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001319", @@ -207120,7 +225812,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001320", @@ -207140,7 +225834,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001321", @@ -207160,7 +225856,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001322", @@ -207180,7 +225878,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001323", @@ -207200,7 +225900,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001324", @@ -207220,7 +225922,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001325", @@ -207240,7 +225944,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001326", @@ -207260,7 +225966,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001327", @@ -207280,7 +225988,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001328", @@ -207300,7 +226010,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001329", @@ -207320,7 +226032,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001330", @@ -207340,7 +226054,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001331", @@ -207360,7 +226076,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001332", @@ -207380,7 +226098,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001333", @@ -207400,7 +226120,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001334", @@ -207420,7 +226142,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001335", @@ -207440,7 +226164,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001336", @@ -207460,7 +226186,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001337", @@ -207480,7 +226208,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001338", @@ -207500,7 +226230,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001339", @@ -207520,7 +226252,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001340", @@ -207540,7 +226274,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001341", @@ -207560,7 +226296,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001342", @@ -207580,7 +226318,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001343", @@ -207600,7 +226340,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001344", @@ -207620,7 +226362,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001345", @@ -207640,7 +226384,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001346", @@ -207660,7 +226406,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001347", @@ -207680,7 +226428,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001348", @@ -207700,7 +226450,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001349", @@ -207720,7 +226472,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001350", @@ -207740,7 +226494,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001351", @@ -207760,7 +226516,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001352", @@ -207780,7 +226538,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001353", @@ -207800,7 +226560,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001354", @@ -207820,7 +226582,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001355", @@ -207840,7 +226604,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001356", @@ -207860,7 +226626,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001357", @@ -207880,7 +226648,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001358", @@ -207900,7 +226670,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001359", @@ -207920,7 +226692,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001360", @@ -207940,7 +226714,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001361", @@ -207960,7 +226736,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001362", @@ -207980,7 +226758,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001363", @@ -208000,7 +226780,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001364", @@ -208020,7 +226802,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001365", @@ -208040,7 +226824,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001366", @@ -208060,7 +226846,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001367", @@ -208080,7 +226868,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001368", @@ -208100,7 +226890,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001369", @@ -208120,7 +226912,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001370", @@ -208140,7 +226934,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001371", @@ -208160,7 +226956,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001372", @@ -208180,7 +226978,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001373", @@ -208200,7 +227000,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001374", @@ -208220,7 +227022,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001375", @@ -208240,7 +227044,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001376", @@ -208260,7 +227066,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001377", @@ -208280,7 +227088,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001378", @@ -208300,7 +227110,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001379", @@ -208320,7 +227132,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001380", @@ -208340,7 +227154,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001381", @@ -208360,7 +227176,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001382", @@ -208380,7 +227198,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001383", @@ -208400,7 +227220,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001384", @@ -208420,7 +227242,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001385", @@ -208440,7 +227264,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001386", @@ -208460,7 +227286,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001387", @@ -208480,7 +227308,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001388", @@ -208500,7 +227330,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001389", @@ -208520,7 +227352,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001390", @@ -208540,7 +227374,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001391", @@ -208560,7 +227396,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001392", @@ -208580,7 +227418,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001393", @@ -208600,7 +227440,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001394", @@ -208620,7 +227462,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001395", @@ -208640,7 +227484,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001396", @@ -208660,7 +227506,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001397", @@ -208680,7 +227528,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001398", @@ -208700,7 +227550,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001399", @@ -208720,7 +227572,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001400", @@ -208740,7 +227594,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001401", @@ -208760,7 +227616,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001402", @@ -208780,7 +227638,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001403", @@ -208800,7 +227660,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001404", @@ -208820,7 +227682,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001405", @@ -208840,7 +227704,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001406", @@ -208860,7 +227726,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001407", @@ -208880,7 +227748,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001408", @@ -208900,7 +227770,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001409", @@ -208920,7 +227792,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001410", @@ -208940,7 +227814,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001411", @@ -208960,7 +227836,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001412", @@ -208980,7 +227858,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001413", @@ -209000,7 +227880,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001414", @@ -209020,7 +227902,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001415", @@ -209040,7 +227924,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001416", @@ -209060,7 +227946,9 @@ "geography_level": "constituency", "geography_id": "E14001416" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001417", @@ -209080,7 +227968,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001418", @@ -209100,7 +227990,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001419", @@ -209120,7 +228012,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001420", @@ -209140,7 +228034,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001421", @@ -209160,7 +228056,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001422", @@ -209180,7 +228078,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001423", @@ -209200,7 +228100,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001424", @@ -209220,7 +228122,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001425", @@ -209240,7 +228144,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001426", @@ -209260,7 +228166,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001427", @@ -209280,7 +228188,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001428", @@ -209300,7 +228210,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001429", @@ -209320,7 +228232,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001430", @@ -209340,7 +228254,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001431", @@ -209360,7 +228276,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001432", @@ -209380,7 +228298,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001433", @@ -209400,7 +228320,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001434", @@ -209420,7 +228342,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001435", @@ -209440,7 +228364,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001436", @@ -209460,7 +228386,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001437", @@ -209480,7 +228408,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001438", @@ -209500,7 +228430,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001439", @@ -209520,7 +228452,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001440", @@ -209540,7 +228474,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001441", @@ -209560,7 +228496,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001442", @@ -209580,7 +228518,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001443", @@ -209600,7 +228540,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001444", @@ -209620,7 +228562,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001445", @@ -209640,7 +228584,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001446", @@ -209660,7 +228606,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001447", @@ -209680,7 +228628,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001448", @@ -209700,7 +228650,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001449", @@ -209720,7 +228672,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001450", @@ -209740,7 +228694,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001451", @@ -209760,7 +228716,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001452", @@ -209780,7 +228738,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001453", @@ -209800,7 +228760,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001454", @@ -209820,7 +228782,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001455", @@ -209840,7 +228804,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001456", @@ -209860,7 +228826,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001457", @@ -209880,7 +228848,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001458", @@ -209900,7 +228870,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001459", @@ -209920,7 +228892,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001460", @@ -209940,7 +228914,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001461", @@ -209960,7 +228936,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001462", @@ -209980,7 +228958,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001463", @@ -210000,7 +228980,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001464", @@ -210020,7 +229002,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001465", @@ -210040,7 +229024,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001466", @@ -210060,7 +229046,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001467", @@ -210080,7 +229068,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001468", @@ -210100,7 +229090,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001469", @@ -210120,7 +229112,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001470", @@ -210140,7 +229134,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001471", @@ -210160,7 +229156,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001472", @@ -210180,7 +229178,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001473", @@ -210200,7 +229200,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001474", @@ -210220,7 +229222,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001475", @@ -210240,7 +229244,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001476", @@ -210260,7 +229266,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001477", @@ -210280,7 +229288,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001478", @@ -210300,7 +229310,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001479", @@ -210320,7 +229332,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001480", @@ -210340,7 +229354,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001481", @@ -210360,7 +229376,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001482", @@ -210380,7 +229398,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001483", @@ -210400,7 +229420,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001484", @@ -210420,7 +229442,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001485", @@ -210440,7 +229464,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001486", @@ -210460,7 +229486,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001487", @@ -210480,7 +229508,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001488", @@ -210500,7 +229530,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001489", @@ -210520,7 +229552,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001490", @@ -210540,7 +229574,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001491", @@ -210560,7 +229596,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001492", @@ -210580,7 +229618,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001493", @@ -210600,7 +229640,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001494", @@ -210620,7 +229662,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001495", @@ -210640,7 +229684,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001496", @@ -210660,7 +229706,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001497", @@ -210680,7 +229728,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001498", @@ -210700,7 +229750,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001499", @@ -210720,7 +229772,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001500", @@ -210740,7 +229794,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001501", @@ -210760,7 +229816,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001502", @@ -210780,7 +229838,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001503", @@ -210800,7 +229860,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001504", @@ -210820,7 +229882,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001505", @@ -210840,7 +229904,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001506", @@ -210860,7 +229926,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001507", @@ -210880,7 +229948,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001508", @@ -210900,7 +229970,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001509", @@ -210920,7 +229992,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001510", @@ -210940,7 +230014,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001511", @@ -210960,7 +230036,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001512", @@ -210980,7 +230058,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001513", @@ -211000,7 +230080,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001514", @@ -211020,7 +230102,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001515", @@ -211040,7 +230124,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001516", @@ -211060,7 +230146,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001517", @@ -211080,7 +230168,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001518", @@ -211100,7 +230190,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001519", @@ -211120,7 +230212,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001520", @@ -211140,7 +230234,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001521", @@ -211160,7 +230256,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001522", @@ -211180,7 +230278,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001523", @@ -211200,7 +230300,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001524", @@ -211220,7 +230322,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001525", @@ -211240,7 +230344,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001526", @@ -211260,7 +230366,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001527", @@ -211280,7 +230388,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001528", @@ -211300,7 +230410,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001529", @@ -211320,7 +230432,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001530", @@ -211340,7 +230454,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001531", @@ -211360,7 +230476,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001532", @@ -211380,7 +230498,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001533", @@ -211400,7 +230520,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001534", @@ -211420,7 +230542,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001535", @@ -211440,7 +230564,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001536", @@ -211460,7 +230586,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001537", @@ -211480,7 +230608,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001538", @@ -211500,7 +230630,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001539", @@ -211520,7 +230652,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001540", @@ -211540,7 +230674,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001541", @@ -211560,7 +230696,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001542", @@ -211580,7 +230718,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001543", @@ -211600,7 +230740,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001544", @@ -211620,7 +230762,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001545", @@ -211640,7 +230784,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001546", @@ -211660,7 +230806,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001547", @@ -211680,7 +230828,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001548", @@ -211700,7 +230850,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001549", @@ -211720,7 +230872,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001550", @@ -211740,7 +230894,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001551", @@ -211760,7 +230916,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001552", @@ -211780,7 +230938,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001553", @@ -211800,7 +230960,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001554", @@ -211820,7 +230982,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001555", @@ -211840,7 +231004,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001556", @@ -211860,7 +231026,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001557", @@ -211880,7 +231048,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001558", @@ -211900,7 +231070,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001559", @@ -211920,7 +231092,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001560", @@ -211940,7 +231114,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001561", @@ -211960,7 +231136,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001562", @@ -211980,7 +231158,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001563", @@ -212000,7 +231180,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001564", @@ -212020,7 +231202,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001565", @@ -212040,7 +231224,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001566", @@ -212060,7 +231246,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001567", @@ -212080,7 +231268,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001568", @@ -212100,7 +231290,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001569", @@ -212120,7 +231312,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001570", @@ -212140,7 +231334,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001571", @@ -212160,7 +231356,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001572", @@ -212180,7 +231378,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001573", @@ -212200,7 +231400,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001574", @@ -212220,7 +231422,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001575", @@ -212240,7 +231444,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001576", @@ -212260,7 +231466,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001577", @@ -212280,7 +231488,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001578", @@ -212300,7 +231510,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001579", @@ -212320,7 +231532,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001580", @@ -212340,7 +231554,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001581", @@ -212360,7 +231576,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001582", @@ -212380,7 +231598,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001583", @@ -212400,7 +231620,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001584", @@ -212420,7 +231642,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001585", @@ -212440,7 +231664,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001586", @@ -212460,7 +231686,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001587", @@ -212480,7 +231708,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001588", @@ -212500,7 +231730,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001589", @@ -212520,7 +231752,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001590", @@ -212540,7 +231774,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001591", @@ -212560,7 +231796,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001592", @@ -212580,7 +231818,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001593", @@ -212600,7 +231840,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001594", @@ -212620,7 +231862,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001595", @@ -212640,7 +231884,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001596", @@ -212660,7 +231906,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001597", @@ -212680,7 +231928,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001598", @@ -212700,7 +231950,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001599", @@ -212720,7 +231972,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001600", @@ -212740,7 +231994,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001601", @@ -212760,7 +232016,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001602", @@ -212780,7 +232038,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001603", @@ -212800,7 +232060,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001604", @@ -212820,7 +232082,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E14001605", @@ -212840,7 +232104,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000001", @@ -212860,7 +232126,9 @@ "geography_level": "constituency", "geography_id": "N05000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000002", @@ -212880,7 +232148,9 @@ "geography_level": "constituency", "geography_id": "N05000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000003", @@ -212900,7 +232170,9 @@ "geography_level": "constituency", "geography_id": "N05000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000004", @@ -212920,7 +232192,9 @@ "geography_level": "constituency", "geography_id": "N05000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000005", @@ -212940,7 +232214,9 @@ "geography_level": "constituency", "geography_id": "N05000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000006", @@ -212960,7 +232236,9 @@ "geography_level": "constituency", "geography_id": "N05000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000007", @@ -212980,7 +232258,9 @@ "geography_level": "constituency", "geography_id": "N05000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000008", @@ -213000,7 +232280,9 @@ "geography_level": "constituency", "geography_id": "N05000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000009", @@ -213020,7 +232302,9 @@ "geography_level": "constituency", "geography_id": "N05000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000010", @@ -213040,7 +232324,9 @@ "geography_level": "constituency", "geography_id": "N05000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000011", @@ -213060,7 +232346,9 @@ "geography_level": "constituency", "geography_id": "N05000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000012", @@ -213080,7 +232368,9 @@ "geography_level": "constituency", "geography_id": "N05000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000013", @@ -213100,7 +232390,9 @@ "geography_level": "constituency", "geography_id": "N05000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000014", @@ -213120,7 +232412,9 @@ "geography_level": "constituency", "geography_id": "N05000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000015", @@ -213140,7 +232434,9 @@ "geography_level": "constituency", "geography_id": "N05000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000016", @@ -213160,7 +232456,9 @@ "geography_level": "constituency", "geography_id": "N05000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000017", @@ -213180,7 +232478,9 @@ "geography_level": "constituency", "geography_id": "N05000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N05000018", @@ -213200,7 +232500,9 @@ "geography_level": "constituency", "geography_id": "N05000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000021", @@ -213220,7 +232522,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000027", @@ -213240,7 +232544,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000045", @@ -213260,7 +232566,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000048", @@ -213280,7 +232588,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000051", @@ -213300,7 +232610,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000060", @@ -213320,7 +232632,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000061", @@ -213340,7 +232654,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000062", @@ -213360,7 +232676,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000063", @@ -213380,7 +232698,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000064", @@ -213400,7 +232720,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000065", @@ -213420,7 +232742,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000066", @@ -213440,7 +232764,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000067", @@ -213460,7 +232786,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000068", @@ -213480,7 +232808,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000069", @@ -213500,7 +232830,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000070", @@ -213520,7 +232852,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000071", @@ -213540,7 +232874,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000072", @@ -213560,7 +232896,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000073", @@ -213580,7 +232918,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000074", @@ -213600,7 +232940,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000075", @@ -213620,7 +232962,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000076", @@ -213640,7 +232984,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000077", @@ -213660,7 +233006,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000078", @@ -213680,7 +233028,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000079", @@ -213700,7 +233050,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000080", @@ -213720,7 +233072,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000081", @@ -213740,7 +233094,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000082", @@ -213760,7 +233116,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000083", @@ -213780,7 +233138,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000084", @@ -213800,7 +233160,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000085", @@ -213820,7 +233182,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000086", @@ -213840,7 +233204,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000087", @@ -213860,7 +233226,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000088", @@ -213880,7 +233248,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000089", @@ -213900,7 +233270,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000090", @@ -213920,7 +233292,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000091", @@ -213940,7 +233314,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000092", @@ -213960,7 +233336,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000093", @@ -213980,7 +233358,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000094", @@ -214000,7 +233380,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000095", @@ -214020,7 +233402,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000096", @@ -214040,7 +233424,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000097", @@ -214060,7 +233446,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000098", @@ -214080,7 +233468,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000099", @@ -214100,7 +233490,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000100", @@ -214120,7 +233512,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000101", @@ -214140,7 +233534,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000102", @@ -214160,7 +233556,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000103", @@ -214180,7 +233578,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000104", @@ -214200,7 +233600,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000105", @@ -214220,7 +233622,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000106", @@ -214240,7 +233644,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000107", @@ -214260,7 +233666,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000108", @@ -214280,7 +233688,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000109", @@ -214300,7 +233710,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000110", @@ -214320,7 +233732,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S14000111", @@ -214340,7 +233754,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000081", @@ -214360,7 +233776,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000082", @@ -214380,7 +233798,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000083", @@ -214400,7 +233820,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000084", @@ -214420,7 +233842,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000085", @@ -214440,7 +233864,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000086", @@ -214460,7 +233886,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000087", @@ -214480,7 +233908,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000088", @@ -214500,7 +233930,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000089", @@ -214520,7 +233952,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000090", @@ -214540,7 +233974,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000091", @@ -214560,7 +233996,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000092", @@ -214580,7 +234018,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000093", @@ -214600,7 +234040,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000094", @@ -214620,7 +234062,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000095", @@ -214640,7 +234084,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000096", @@ -214660,7 +234106,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000097", @@ -214680,7 +234128,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000098", @@ -214700,7 +234150,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000099", @@ -214720,7 +234172,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000100", @@ -214740,7 +234194,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000101", @@ -214760,7 +234216,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000102", @@ -214780,7 +234238,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000103", @@ -214800,7 +234260,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000104", @@ -214820,7 +234282,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000105", @@ -214840,7 +234304,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000106", @@ -214860,7 +234326,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000107", @@ -214880,7 +234348,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000108", @@ -214900,7 +234370,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000109", @@ -214920,7 +234392,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000110", @@ -214940,7 +234414,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000111", @@ -214960,7 +234436,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W07000112", @@ -214980,7 +234458,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000001", @@ -215000,7 +234480,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000002", @@ -215020,7 +234502,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000003", @@ -215040,7 +234524,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000004", @@ -215060,7 +234546,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000005", @@ -215080,7 +234568,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000006", @@ -215100,7 +234590,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000007", @@ -215120,7 +234612,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000008", @@ -215140,7 +234634,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000009", @@ -215160,7 +234656,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000010", @@ -215180,7 +234678,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000011", @@ -215200,7 +234700,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000012", @@ -215220,7 +234722,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000013", @@ -215240,7 +234744,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000014", @@ -215260,7 +234766,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000015", @@ -215280,7 +234788,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000016", @@ -215300,7 +234810,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000017", @@ -215320,7 +234832,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000018", @@ -215340,7 +234854,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000019", @@ -215360,7 +234876,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000020", @@ -215380,7 +234898,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000021", @@ -215400,7 +234920,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000022", @@ -215420,7 +234942,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000023", @@ -215440,7 +234964,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000024", @@ -215460,7 +234986,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000025", @@ -215480,7 +235008,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000026", @@ -215500,7 +235030,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000027", @@ -215520,7 +235052,9 @@ "geography_level": "local_authority", "geography_id": "E06000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000030", @@ -215540,7 +235074,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000031", @@ -215560,7 +235096,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000032", @@ -215580,7 +235118,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000033", @@ -215600,7 +235140,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000034", @@ -215620,7 +235162,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000035", @@ -215640,7 +235184,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000036", @@ -215660,7 +235206,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000037", @@ -215680,7 +235228,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000038", @@ -215700,7 +235250,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000039", @@ -215720,7 +235272,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000040", @@ -215740,7 +235294,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000041", @@ -215760,7 +235316,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000042", @@ -215780,7 +235338,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000043", @@ -215800,7 +235360,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000044", @@ -215820,7 +235382,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000045", @@ -215840,7 +235404,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000046", @@ -215860,7 +235426,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000047", @@ -215880,7 +235448,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000049", @@ -215900,7 +235470,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000050", @@ -215920,7 +235492,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000051", @@ -215940,7 +235514,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000052", @@ -215960,7 +235536,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000053", @@ -215980,7 +235558,9 @@ "geography_level": "local_authority", "geography_id": "E06000053" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000054", @@ -216000,7 +235580,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000055", @@ -216020,7 +235602,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000056", @@ -216040,7 +235624,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000057", @@ -216060,7 +235646,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000058", @@ -216080,7 +235668,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000059", @@ -216100,7 +235690,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000060", @@ -216120,7 +235712,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000061", @@ -216140,7 +235734,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000062", @@ -216160,7 +235756,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000063", @@ -216180,7 +235778,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000064", @@ -216200,7 +235800,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000065", @@ -216220,7 +235822,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E06000066", @@ -216240,7 +235844,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000008", @@ -216260,7 +235866,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000009", @@ -216280,7 +235888,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000010", @@ -216300,7 +235910,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000011", @@ -216320,7 +235932,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000012", @@ -216340,7 +235954,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000032", @@ -216360,7 +235976,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000033", @@ -216380,7 +235998,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000034", @@ -216400,7 +236020,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000035", @@ -216420,7 +236042,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000036", @@ -216440,7 +236064,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000037", @@ -216460,7 +236086,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000038", @@ -216480,7 +236108,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000039", @@ -216500,7 +236130,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000040", @@ -216520,7 +236152,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000041", @@ -216540,7 +236174,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000042", @@ -216560,7 +236196,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000043", @@ -216580,7 +236218,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000044", @@ -216600,7 +236240,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000045", @@ -216620,7 +236262,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000046", @@ -216640,7 +236284,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000047", @@ -216660,7 +236306,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000061", @@ -216680,7 +236328,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000062", @@ -216700,7 +236350,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000063", @@ -216720,7 +236372,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000064", @@ -216740,7 +236394,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000065", @@ -216760,7 +236416,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000066", @@ -216780,7 +236438,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000067", @@ -216800,7 +236460,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000068", @@ -216820,7 +236482,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000069", @@ -216840,7 +236504,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000070", @@ -216860,7 +236526,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000071", @@ -216880,7 +236548,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000072", @@ -216900,7 +236570,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000073", @@ -216920,7 +236592,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000074", @@ -216940,7 +236614,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000075", @@ -216960,7 +236636,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000076", @@ -216980,7 +236658,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000077", @@ -217000,7 +236680,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000078", @@ -217020,7 +236702,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000079", @@ -217040,7 +236724,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000080", @@ -217060,7 +236746,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000081", @@ -217080,7 +236768,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000082", @@ -217100,7 +236790,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000083", @@ -217120,7 +236812,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000084", @@ -217140,7 +236834,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000085", @@ -217160,7 +236856,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000086", @@ -217180,7 +236878,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000087", @@ -217200,7 +236900,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000088", @@ -217220,7 +236922,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000089", @@ -217240,7 +236944,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000090", @@ -217260,7 +236966,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000091", @@ -217280,7 +236988,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000092", @@ -217300,7 +237010,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000093", @@ -217320,7 +237032,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000094", @@ -217340,7 +237054,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000095", @@ -217360,7 +237076,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000096", @@ -217380,7 +237098,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000098", @@ -217400,7 +237120,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000099", @@ -217420,7 +237142,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000102", @@ -217440,7 +237164,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000103", @@ -217460,7 +237186,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000105", @@ -217480,7 +237208,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000106", @@ -217500,7 +237230,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000107", @@ -217520,7 +237252,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000108", @@ -217540,7 +237274,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000109", @@ -217560,7 +237296,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000110", @@ -217580,7 +237318,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000111", @@ -217600,7 +237340,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000112", @@ -217620,7 +237362,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000113", @@ -217640,7 +237384,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000114", @@ -217660,7 +237406,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000115", @@ -217680,7 +237428,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000116", @@ -217700,7 +237450,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000117", @@ -217720,7 +237472,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000118", @@ -217740,7 +237494,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000119", @@ -217760,7 +237516,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000120", @@ -217780,7 +237538,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000121", @@ -217800,7 +237560,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000122", @@ -217820,7 +237582,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000123", @@ -217840,7 +237604,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000124", @@ -217860,7 +237626,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000125", @@ -217880,7 +237648,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000126", @@ -217900,7 +237670,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000127", @@ -217920,7 +237692,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000128", @@ -217940,7 +237714,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000129", @@ -217960,7 +237736,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000130", @@ -217980,7 +237758,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000131", @@ -218000,7 +237780,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000132", @@ -218020,7 +237802,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000133", @@ -218040,7 +237824,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000134", @@ -218060,7 +237846,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000135", @@ -218080,7 +237868,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000136", @@ -218100,7 +237890,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000137", @@ -218120,7 +237912,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000138", @@ -218140,7 +237934,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000139", @@ -218160,7 +237956,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000140", @@ -218180,7 +237978,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000141", @@ -218200,7 +238000,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000142", @@ -218220,7 +238022,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000143", @@ -218240,7 +238044,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000144", @@ -218260,7 +238066,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000145", @@ -218280,7 +238088,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000146", @@ -218300,7 +238110,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000147", @@ -218320,7 +238132,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000148", @@ -218340,7 +238154,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000149", @@ -218360,7 +238176,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000170", @@ -218380,7 +238198,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000171", @@ -218400,7 +238220,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000172", @@ -218420,7 +238242,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000173", @@ -218440,7 +238264,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000174", @@ -218460,7 +238286,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000175", @@ -218480,7 +238308,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000176", @@ -218500,7 +238330,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000177", @@ -218520,7 +238352,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000178", @@ -218540,7 +238374,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000179", @@ -218560,7 +238396,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000180", @@ -218580,7 +238418,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000181", @@ -218600,7 +238440,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000192", @@ -218620,7 +238462,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000193", @@ -218640,7 +238484,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000194", @@ -218660,7 +238506,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000195", @@ -218680,7 +238528,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000196", @@ -218700,7 +238550,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000197", @@ -218720,7 +238572,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000198", @@ -218740,7 +238594,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000199", @@ -218760,7 +238616,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000200", @@ -218780,7 +238638,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000202", @@ -218800,7 +238660,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000203", @@ -218820,7 +238682,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000207", @@ -218840,7 +238704,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000208", @@ -218860,7 +238726,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000209", @@ -218880,7 +238748,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000210", @@ -218900,7 +238770,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000211", @@ -218920,7 +238792,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000212", @@ -218940,7 +238814,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000213", @@ -218960,7 +238836,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000214", @@ -218980,7 +238858,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000215", @@ -219000,7 +238880,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000216", @@ -219020,7 +238902,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000217", @@ -219040,7 +238924,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000218", @@ -219060,7 +238946,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000219", @@ -219080,7 +238968,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000220", @@ -219100,7 +238990,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000221", @@ -219120,7 +239012,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000222", @@ -219140,7 +239034,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000223", @@ -219160,7 +239056,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000224", @@ -219180,7 +239078,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000225", @@ -219200,7 +239100,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000226", @@ -219220,7 +239122,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000227", @@ -219240,7 +239144,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000228", @@ -219260,7 +239166,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000229", @@ -219280,7 +239188,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000234", @@ -219300,7 +239210,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000235", @@ -219320,7 +239232,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000236", @@ -219340,7 +239254,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000237", @@ -219360,7 +239276,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000238", @@ -219380,7 +239298,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000239", @@ -219400,7 +239320,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000240", @@ -219420,7 +239342,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000241", @@ -219440,7 +239364,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000242", @@ -219460,7 +239386,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000243", @@ -219480,7 +239408,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000244", @@ -219500,7 +239430,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E07000245", @@ -219520,7 +239452,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000001", @@ -219540,7 +239474,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000002", @@ -219560,7 +239496,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000003", @@ -219580,7 +239518,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000004", @@ -219600,7 +239540,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000005", @@ -219620,7 +239562,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000006", @@ -219640,7 +239584,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000007", @@ -219660,7 +239606,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000008", @@ -219680,7 +239628,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000009", @@ -219700,7 +239650,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000010", @@ -219720,7 +239672,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000011", @@ -219740,7 +239694,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000012", @@ -219760,7 +239716,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000013", @@ -219780,7 +239738,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000014", @@ -219800,7 +239760,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000015", @@ -219820,7 +239782,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000016", @@ -219840,7 +239804,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000017", @@ -219860,7 +239826,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000018", @@ -219880,7 +239848,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000019", @@ -219900,7 +239870,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000021", @@ -219920,7 +239892,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000022", @@ -219940,7 +239914,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000023", @@ -219960,7 +239936,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000024", @@ -219980,7 +239958,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000025", @@ -220000,7 +239980,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000026", @@ -220020,7 +240002,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000027", @@ -220040,7 +240024,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000028", @@ -220060,7 +240046,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000029", @@ -220080,7 +240068,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000030", @@ -220100,7 +240090,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000031", @@ -220120,7 +240112,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000032", @@ -220140,7 +240134,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000033", @@ -220160,7 +240156,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000034", @@ -220180,7 +240178,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000035", @@ -220200,7 +240200,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000036", @@ -220220,7 +240222,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E08000037", @@ -220240,7 +240244,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000001", @@ -220260,7 +240266,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000002", @@ -220280,7 +240288,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000003", @@ -220300,7 +240310,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000004", @@ -220320,7 +240332,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000005", @@ -220340,7 +240354,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000006", @@ -220360,7 +240376,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000007", @@ -220380,7 +240398,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000008", @@ -220400,7 +240420,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000009", @@ -220420,7 +240442,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000010", @@ -220440,7 +240464,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000011", @@ -220460,7 +240486,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000012", @@ -220480,7 +240508,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000013", @@ -220500,7 +240530,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000014", @@ -220520,7 +240552,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000015", @@ -220540,7 +240574,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000016", @@ -220560,7 +240596,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000017", @@ -220580,7 +240618,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000018", @@ -220600,7 +240640,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000019", @@ -220620,7 +240662,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000020", @@ -220640,7 +240684,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000021", @@ -220660,7 +240706,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000022", @@ -220680,7 +240728,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000023", @@ -220700,7 +240750,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000024", @@ -220720,7 +240772,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000025", @@ -220740,7 +240794,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000026", @@ -220760,7 +240816,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000027", @@ -220780,7 +240838,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000028", @@ -220800,7 +240860,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000029", @@ -220820,7 +240882,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000030", @@ -220840,7 +240904,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000031", @@ -220860,7 +240926,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000032", @@ -220880,7 +240948,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@E09000033", @@ -220900,7 +240970,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000001", @@ -220920,7 +240992,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000002", @@ -220940,7 +241014,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000003", @@ -220960,7 +241036,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000004", @@ -220980,7 +241058,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000005", @@ -221000,7 +241080,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000006", @@ -221020,7 +241102,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000007", @@ -221040,7 +241124,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000008", @@ -221060,7 +241146,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000009", @@ -221080,7 +241168,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000010", @@ -221100,7 +241190,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@N09000011", @@ -221120,7 +241212,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000005", @@ -221140,7 +241234,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000006", @@ -221160,7 +241256,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000008", @@ -221180,7 +241278,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000010", @@ -221200,7 +241300,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000011", @@ -221220,7 +241322,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000013", @@ -221240,7 +241344,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000014", @@ -221260,7 +241366,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000017", @@ -221280,7 +241388,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000018", @@ -221300,7 +241410,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000019", @@ -221320,7 +241432,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000020", @@ -221340,7 +241454,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000021", @@ -221360,7 +241476,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000023", @@ -221380,7 +241498,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000026", @@ -221400,7 +241520,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000027", @@ -221420,7 +241542,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000028", @@ -221440,7 +241564,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000029", @@ -221460,7 +241586,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000030", @@ -221480,7 +241608,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000033", @@ -221500,7 +241630,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000034", @@ -221520,7 +241652,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000035", @@ -221540,7 +241674,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000036", @@ -221560,7 +241696,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000038", @@ -221580,7 +241718,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000039", @@ -221600,7 +241740,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000040", @@ -221620,7 +241762,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000041", @@ -221640,7 +241784,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000042", @@ -221660,7 +241806,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000045", @@ -221680,7 +241828,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000047", @@ -221700,7 +241850,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000048", @@ -221720,7 +241872,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000049", @@ -221740,7 +241894,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@S12000050", @@ -221760,7 +241916,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000001", @@ -221780,7 +241938,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000002", @@ -221800,7 +241960,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000003", @@ -221820,7 +241982,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000004", @@ -221840,7 +242004,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000005", @@ -221860,7 +242026,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000006", @@ -221880,7 +242048,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000008", @@ -221900,7 +242070,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000009", @@ -221920,7 +242092,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000010", @@ -221940,7 +242114,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000011", @@ -221960,7 +242136,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000012", @@ -221980,7 +242158,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000013", @@ -222000,7 +242180,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000014", @@ -222020,7 +242202,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000015", @@ -222040,7 +242224,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000016", @@ -222060,7 +242246,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000018", @@ -222080,7 +242268,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000019", @@ -222100,7 +242290,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000020", @@ -222120,7 +242312,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000021", @@ -222140,7 +242334,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000022", @@ -222160,7 +242356,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000023", @@ -222180,7 +242378,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.50_60@W06000024", @@ -222200,7 +242400,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001063", @@ -222220,7 +242422,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001064", @@ -222240,7 +242444,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001065", @@ -222260,7 +242466,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001066", @@ -222280,7 +242488,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001067", @@ -222300,7 +242510,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001068", @@ -222320,7 +242532,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001069", @@ -222340,7 +242554,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001070", @@ -222360,7 +242576,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001071", @@ -222380,7 +242598,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001072", @@ -222400,7 +242620,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001073", @@ -222420,7 +242642,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001074", @@ -222440,7 +242664,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001075", @@ -222460,7 +242686,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001076", @@ -222480,7 +242708,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001077", @@ -222500,7 +242730,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001078", @@ -222520,7 +242752,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001079", @@ -222540,7 +242774,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001080", @@ -222560,7 +242796,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001081", @@ -222580,7 +242818,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001082", @@ -222600,7 +242840,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001083", @@ -222620,7 +242862,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001084", @@ -222640,7 +242884,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001085", @@ -222660,7 +242906,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001086", @@ -222680,7 +242928,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001087", @@ -222700,7 +242950,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001088", @@ -222720,7 +242972,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001089", @@ -222740,7 +242994,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001090", @@ -222760,7 +243016,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001091", @@ -222780,7 +243038,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001092", @@ -222800,7 +243060,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001093", @@ -222820,7 +243082,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001094", @@ -222840,7 +243104,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001095", @@ -222860,7 +243126,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001096", @@ -222880,7 +243148,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001097", @@ -222900,7 +243170,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001098", @@ -222920,7 +243192,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001099", @@ -222940,7 +243214,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001100", @@ -222960,7 +243236,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001101", @@ -222980,7 +243258,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001102", @@ -223000,7 +243280,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001103", @@ -223020,7 +243302,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001104", @@ -223040,7 +243324,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001105", @@ -223060,7 +243346,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001106", @@ -223080,7 +243368,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001107", @@ -223100,7 +243390,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001108", @@ -223120,7 +243412,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001109", @@ -223140,7 +243434,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001110", @@ -223160,7 +243456,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001111", @@ -223180,7 +243478,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001112", @@ -223200,7 +243500,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001113", @@ -223220,7 +243522,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001114", @@ -223240,7 +243544,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001115", @@ -223260,7 +243566,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001116", @@ -223280,7 +243588,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001117", @@ -223300,7 +243610,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001118", @@ -223320,7 +243632,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001119", @@ -223340,7 +243654,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001120", @@ -223360,7 +243676,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001121", @@ -223380,7 +243698,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001122", @@ -223400,7 +243720,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001123", @@ -223420,7 +243742,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001124", @@ -223440,7 +243764,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001125", @@ -223460,7 +243786,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001126", @@ -223480,7 +243808,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001127", @@ -223500,7 +243830,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001128", @@ -223520,7 +243852,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001129", @@ -223540,7 +243874,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001130", @@ -223560,7 +243896,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001131", @@ -223580,7 +243918,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001132", @@ -223600,7 +243940,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001133", @@ -223620,7 +243962,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001134", @@ -223640,7 +243984,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001135", @@ -223660,7 +244006,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001136", @@ -223680,7 +244028,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001137", @@ -223700,7 +244050,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001138", @@ -223720,7 +244072,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001139", @@ -223740,7 +244094,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001140", @@ -223760,7 +244116,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001141", @@ -223780,7 +244138,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001142", @@ -223800,7 +244160,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001143", @@ -223820,7 +244182,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001144", @@ -223840,7 +244204,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001145", @@ -223860,7 +244226,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001146", @@ -223880,7 +244248,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001147", @@ -223900,7 +244270,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001148", @@ -223920,7 +244292,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001149", @@ -223940,7 +244314,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001150", @@ -223960,7 +244336,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001151", @@ -223980,7 +244358,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001152", @@ -224000,7 +244380,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001153", @@ -224020,7 +244402,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001154", @@ -224040,7 +244424,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001155", @@ -224060,7 +244446,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001156", @@ -224080,7 +244468,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001157", @@ -224100,7 +244490,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001158", @@ -224120,7 +244512,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001159", @@ -224140,7 +244534,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001160", @@ -224160,7 +244556,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001161", @@ -224180,7 +244578,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001162", @@ -224200,7 +244600,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001163", @@ -224220,7 +244622,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001164", @@ -224240,7 +244644,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001165", @@ -224260,7 +244666,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001166", @@ -224280,7 +244688,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001167", @@ -224300,7 +244710,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001168", @@ -224320,7 +244732,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001169", @@ -224340,7 +244754,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001170", @@ -224360,7 +244776,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001171", @@ -224380,7 +244798,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001172", @@ -224400,7 +244820,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001173", @@ -224420,7 +244842,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001174", @@ -224440,7 +244864,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001175", @@ -224460,7 +244886,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001176", @@ -224480,7 +244908,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001177", @@ -224500,7 +244930,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001178", @@ -224520,7 +244952,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001179", @@ -224540,7 +244974,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001180", @@ -224560,7 +244996,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001181", @@ -224580,7 +245018,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001182", @@ -224600,7 +245040,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001183", @@ -224620,7 +245062,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001184", @@ -224640,7 +245084,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001185", @@ -224660,7 +245106,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001186", @@ -224680,7 +245128,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001187", @@ -224700,7 +245150,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001188", @@ -224720,7 +245172,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001189", @@ -224740,7 +245194,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001190", @@ -224760,7 +245216,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001191", @@ -224780,7 +245238,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001192", @@ -224800,7 +245260,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001193", @@ -224820,7 +245282,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001194", @@ -224840,7 +245304,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001195", @@ -224860,7 +245326,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001196", @@ -224880,7 +245348,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001197", @@ -224900,7 +245370,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001198", @@ -224920,7 +245392,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001199", @@ -224940,7 +245414,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001200", @@ -224960,7 +245436,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001201", @@ -224980,7 +245458,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001202", @@ -225000,7 +245480,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001203", @@ -225020,7 +245502,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001204", @@ -225040,7 +245524,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001205", @@ -225060,7 +245546,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001206", @@ -225080,7 +245568,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001207", @@ -225100,7 +245590,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001208", @@ -225120,7 +245612,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001209", @@ -225140,7 +245634,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001210", @@ -225160,7 +245656,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001211", @@ -225180,7 +245678,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001212", @@ -225200,7 +245700,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001213", @@ -225220,7 +245722,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001214", @@ -225240,7 +245744,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001215", @@ -225260,7 +245766,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001216", @@ -225280,7 +245788,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001217", @@ -225300,7 +245810,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001218", @@ -225320,7 +245832,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001219", @@ -225340,7 +245854,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001220", @@ -225360,7 +245876,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001221", @@ -225380,7 +245898,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001222", @@ -225400,7 +245920,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001223", @@ -225420,7 +245942,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001224", @@ -225440,7 +245964,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001225", @@ -225460,7 +245986,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001226", @@ -225480,7 +246008,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001227", @@ -225500,7 +246030,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001228", @@ -225520,7 +246052,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001229", @@ -225540,7 +246074,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001230", @@ -225560,7 +246096,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001231", @@ -225580,7 +246118,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001232", @@ -225600,7 +246140,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001233", @@ -225620,7 +246162,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001234", @@ -225640,7 +246184,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001235", @@ -225660,7 +246206,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001236", @@ -225680,7 +246228,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001237", @@ -225700,7 +246250,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001238", @@ -225720,7 +246272,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001239", @@ -225740,7 +246294,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001240", @@ -225760,7 +246316,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001241", @@ -225780,7 +246338,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001242", @@ -225800,7 +246360,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001243", @@ -225820,7 +246382,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001244", @@ -225840,7 +246404,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001245", @@ -225860,7 +246426,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001246", @@ -225880,7 +246448,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001247", @@ -225900,7 +246470,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001248", @@ -225920,7 +246492,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001249", @@ -225940,7 +246514,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001250", @@ -225960,7 +246536,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001251", @@ -225980,7 +246558,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001252", @@ -226000,7 +246580,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001253", @@ -226020,7 +246602,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001254", @@ -226040,7 +246624,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001255", @@ -226060,7 +246646,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001256", @@ -226080,7 +246668,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001257", @@ -226100,7 +246690,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001258", @@ -226120,7 +246712,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001259", @@ -226140,7 +246734,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001260", @@ -226160,7 +246756,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001261", @@ -226180,7 +246778,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001262", @@ -226200,7 +246800,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001263", @@ -226220,7 +246822,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001264", @@ -226240,7 +246844,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001265", @@ -226260,7 +246866,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001266", @@ -226280,7 +246888,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001267", @@ -226300,7 +246910,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001268", @@ -226320,7 +246932,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001269", @@ -226340,7 +246954,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001270", @@ -226360,7 +246976,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001271", @@ -226380,7 +246998,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001272", @@ -226400,7 +247020,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001273", @@ -226420,7 +247042,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001274", @@ -226440,7 +247064,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001275", @@ -226460,7 +247086,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001276", @@ -226480,7 +247108,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001277", @@ -226500,7 +247130,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001278", @@ -226520,7 +247152,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001279", @@ -226540,7 +247174,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001280", @@ -226560,7 +247196,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001281", @@ -226580,7 +247218,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001282", @@ -226600,7 +247240,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001283", @@ -226620,7 +247262,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001284", @@ -226640,7 +247284,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001285", @@ -226660,7 +247306,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001286", @@ -226680,7 +247328,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001287", @@ -226700,7 +247350,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001288", @@ -226720,7 +247372,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001289", @@ -226740,7 +247394,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001290", @@ -226760,7 +247416,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001291", @@ -226780,7 +247438,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001292", @@ -226800,7 +247460,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001293", @@ -226820,7 +247482,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001294", @@ -226840,7 +247504,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001295", @@ -226860,7 +247526,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001296", @@ -226880,7 +247548,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001297", @@ -226900,7 +247570,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001298", @@ -226920,7 +247592,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001299", @@ -226940,7 +247614,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001300", @@ -226960,7 +247636,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001301", @@ -226980,7 +247658,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001302", @@ -227000,7 +247680,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001303", @@ -227020,7 +247702,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001304", @@ -227040,7 +247724,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001305", @@ -227060,7 +247746,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001306", @@ -227080,7 +247768,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001307", @@ -227100,7 +247790,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001308", @@ -227120,7 +247812,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001309", @@ -227140,7 +247834,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001310", @@ -227160,7 +247856,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001311", @@ -227180,7 +247878,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001312", @@ -227200,7 +247900,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001313", @@ -227220,7 +247922,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001314", @@ -227240,7 +247944,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001315", @@ -227260,7 +247966,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001316", @@ -227280,7 +247988,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001317", @@ -227300,7 +248010,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001318", @@ -227320,7 +248032,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001319", @@ -227340,7 +248054,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001320", @@ -227360,7 +248076,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001321", @@ -227380,7 +248098,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001322", @@ -227400,7 +248120,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001323", @@ -227420,7 +248142,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001324", @@ -227440,7 +248164,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001325", @@ -227460,7 +248186,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001326", @@ -227480,7 +248208,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001327", @@ -227500,7 +248230,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001328", @@ -227520,7 +248252,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001329", @@ -227540,7 +248274,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001330", @@ -227560,7 +248296,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001331", @@ -227580,7 +248318,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001332", @@ -227600,7 +248340,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001333", @@ -227620,7 +248362,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001334", @@ -227640,7 +248384,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001335", @@ -227660,7 +248406,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001336", @@ -227680,7 +248428,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001337", @@ -227700,7 +248450,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001338", @@ -227720,7 +248472,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001339", @@ -227740,7 +248494,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001340", @@ -227760,7 +248516,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001341", @@ -227780,7 +248538,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001342", @@ -227800,7 +248560,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001343", @@ -227820,7 +248582,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001344", @@ -227840,7 +248604,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001345", @@ -227860,7 +248626,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001346", @@ -227880,7 +248648,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001347", @@ -227900,7 +248670,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001348", @@ -227920,7 +248692,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001349", @@ -227940,7 +248714,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001350", @@ -227960,7 +248736,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001351", @@ -227980,7 +248758,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001352", @@ -228000,7 +248780,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001353", @@ -228020,7 +248802,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001354", @@ -228040,7 +248824,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001355", @@ -228060,7 +248846,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001356", @@ -228080,7 +248868,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001357", @@ -228100,7 +248890,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001358", @@ -228120,7 +248912,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001359", @@ -228140,7 +248934,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001360", @@ -228160,7 +248956,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001361", @@ -228180,7 +248978,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001362", @@ -228200,7 +249000,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001363", @@ -228220,7 +249022,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001364", @@ -228240,7 +249044,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001365", @@ -228260,7 +249066,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001366", @@ -228280,7 +249088,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001367", @@ -228300,7 +249110,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001368", @@ -228320,7 +249132,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001369", @@ -228340,7 +249154,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001370", @@ -228360,7 +249176,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001371", @@ -228380,7 +249198,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001372", @@ -228400,7 +249220,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001373", @@ -228420,7 +249242,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001374", @@ -228440,7 +249264,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001375", @@ -228460,7 +249286,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001376", @@ -228480,7 +249308,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001377", @@ -228500,7 +249330,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001378", @@ -228520,7 +249352,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001379", @@ -228540,7 +249374,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001380", @@ -228560,7 +249396,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001381", @@ -228580,7 +249418,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001382", @@ -228600,7 +249440,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001383", @@ -228620,7 +249462,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001384", @@ -228640,7 +249484,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001385", @@ -228660,7 +249506,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001386", @@ -228680,7 +249528,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001387", @@ -228700,7 +249550,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001388", @@ -228720,7 +249572,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001389", @@ -228740,7 +249594,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001390", @@ -228760,7 +249616,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001391", @@ -228780,7 +249638,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001392", @@ -228800,7 +249660,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001393", @@ -228820,7 +249682,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001394", @@ -228840,7 +249704,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001395", @@ -228860,7 +249726,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001396", @@ -228880,7 +249748,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001397", @@ -228900,7 +249770,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001398", @@ -228920,7 +249792,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001399", @@ -228940,7 +249814,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001400", @@ -228960,7 +249836,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001401", @@ -228980,7 +249858,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001402", @@ -229000,7 +249880,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001403", @@ -229020,7 +249902,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001404", @@ -229040,7 +249924,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001405", @@ -229060,7 +249946,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001406", @@ -229080,7 +249968,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001407", @@ -229100,7 +249990,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001408", @@ -229120,7 +250012,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001409", @@ -229140,7 +250034,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001410", @@ -229160,7 +250056,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001411", @@ -229180,7 +250078,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001412", @@ -229200,7 +250100,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001413", @@ -229220,7 +250122,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001414", @@ -229240,7 +250144,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001415", @@ -229260,7 +250166,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001416", @@ -229280,7 +250188,9 @@ "geography_level": "constituency", "geography_id": "E14001416" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001417", @@ -229300,7 +250210,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001418", @@ -229320,7 +250232,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001419", @@ -229340,7 +250254,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001420", @@ -229360,7 +250276,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001421", @@ -229380,7 +250298,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001422", @@ -229400,7 +250320,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001423", @@ -229420,7 +250342,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001424", @@ -229440,7 +250364,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001425", @@ -229460,7 +250386,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001426", @@ -229480,7 +250408,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001427", @@ -229500,7 +250430,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001428", @@ -229520,7 +250452,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001429", @@ -229540,7 +250474,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001430", @@ -229560,7 +250496,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001431", @@ -229580,7 +250518,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001432", @@ -229600,7 +250540,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001433", @@ -229620,7 +250562,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001434", @@ -229640,7 +250584,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001435", @@ -229660,7 +250606,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001436", @@ -229680,7 +250628,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001437", @@ -229700,7 +250650,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001438", @@ -229720,7 +250672,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001439", @@ -229740,7 +250694,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001440", @@ -229760,7 +250716,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001441", @@ -229780,7 +250738,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001442", @@ -229800,7 +250760,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001443", @@ -229820,7 +250782,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001444", @@ -229840,7 +250804,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001445", @@ -229860,7 +250826,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001446", @@ -229880,7 +250848,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001447", @@ -229900,7 +250870,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001448", @@ -229920,7 +250892,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001449", @@ -229940,7 +250914,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001450", @@ -229960,7 +250936,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001451", @@ -229980,7 +250958,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001452", @@ -230000,7 +250980,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001453", @@ -230020,7 +251002,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001454", @@ -230040,7 +251024,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001455", @@ -230060,7 +251046,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001456", @@ -230080,7 +251068,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001457", @@ -230100,7 +251090,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001458", @@ -230120,7 +251112,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001459", @@ -230140,7 +251134,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001460", @@ -230160,7 +251156,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001461", @@ -230180,7 +251178,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001462", @@ -230200,7 +251200,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001463", @@ -230220,7 +251222,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001464", @@ -230240,7 +251244,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001465", @@ -230260,7 +251266,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001466", @@ -230280,7 +251288,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001467", @@ -230300,7 +251310,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001468", @@ -230320,7 +251332,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001469", @@ -230340,7 +251354,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001470", @@ -230360,7 +251376,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001471", @@ -230380,7 +251398,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001472", @@ -230400,7 +251420,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001473", @@ -230420,7 +251442,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001474", @@ -230440,7 +251464,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001475", @@ -230460,7 +251486,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001476", @@ -230480,7 +251508,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001477", @@ -230500,7 +251530,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001478", @@ -230520,7 +251552,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001479", @@ -230540,7 +251574,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001480", @@ -230560,7 +251596,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001481", @@ -230580,7 +251618,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001482", @@ -230600,7 +251640,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001483", @@ -230620,7 +251662,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001484", @@ -230640,7 +251684,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001485", @@ -230660,7 +251706,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001486", @@ -230680,7 +251728,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001487", @@ -230700,7 +251750,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001488", @@ -230720,7 +251772,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001489", @@ -230740,7 +251794,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001490", @@ -230760,7 +251816,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001491", @@ -230780,7 +251838,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001492", @@ -230800,7 +251860,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001493", @@ -230820,7 +251882,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001494", @@ -230840,7 +251904,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001495", @@ -230860,7 +251926,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001496", @@ -230880,7 +251948,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001497", @@ -230900,7 +251970,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001498", @@ -230920,7 +251992,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001499", @@ -230940,7 +252014,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001500", @@ -230960,7 +252036,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001501", @@ -230980,7 +252058,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001502", @@ -231000,7 +252080,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001503", @@ -231020,7 +252102,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001504", @@ -231040,7 +252124,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001505", @@ -231060,7 +252146,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001506", @@ -231080,7 +252168,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001507", @@ -231100,7 +252190,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001508", @@ -231120,7 +252212,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001509", @@ -231140,7 +252234,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001510", @@ -231160,7 +252256,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001511", @@ -231180,7 +252278,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001512", @@ -231200,7 +252300,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001513", @@ -231220,7 +252322,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001514", @@ -231240,7 +252344,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001515", @@ -231260,7 +252366,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001516", @@ -231280,7 +252388,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001517", @@ -231300,7 +252410,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001518", @@ -231320,7 +252432,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001519", @@ -231340,7 +252454,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001520", @@ -231360,7 +252476,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001521", @@ -231380,7 +252498,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001522", @@ -231400,7 +252520,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001523", @@ -231420,7 +252542,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001524", @@ -231440,7 +252564,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001525", @@ -231460,7 +252586,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001526", @@ -231480,7 +252608,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001527", @@ -231500,7 +252630,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001528", @@ -231520,7 +252652,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001529", @@ -231540,7 +252674,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001530", @@ -231560,7 +252696,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001531", @@ -231580,7 +252718,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001532", @@ -231600,7 +252740,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001533", @@ -231620,7 +252762,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001534", @@ -231640,7 +252784,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001535", @@ -231660,7 +252806,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001536", @@ -231680,7 +252828,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001537", @@ -231700,7 +252850,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001538", @@ -231720,7 +252872,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001539", @@ -231740,7 +252894,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001540", @@ -231760,7 +252916,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001541", @@ -231780,7 +252938,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001542", @@ -231800,7 +252960,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001543", @@ -231820,7 +252982,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001544", @@ -231840,7 +253004,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001545", @@ -231860,7 +253026,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001546", @@ -231880,7 +253048,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001547", @@ -231900,7 +253070,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001548", @@ -231920,7 +253092,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001549", @@ -231940,7 +253114,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001550", @@ -231960,7 +253136,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001551", @@ -231980,7 +253158,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001552", @@ -232000,7 +253180,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001553", @@ -232020,7 +253202,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001554", @@ -232040,7 +253224,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001555", @@ -232060,7 +253246,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001556", @@ -232080,7 +253268,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001557", @@ -232100,7 +253290,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001558", @@ -232120,7 +253312,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001559", @@ -232140,7 +253334,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001560", @@ -232160,7 +253356,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001561", @@ -232180,7 +253378,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001562", @@ -232200,7 +253400,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001563", @@ -232220,7 +253422,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001564", @@ -232240,7 +253444,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001565", @@ -232260,7 +253466,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001566", @@ -232280,7 +253488,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001567", @@ -232300,7 +253510,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001568", @@ -232320,7 +253532,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001569", @@ -232340,7 +253554,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001570", @@ -232360,7 +253576,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001571", @@ -232380,7 +253598,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001572", @@ -232400,7 +253620,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001573", @@ -232420,7 +253642,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001574", @@ -232440,7 +253664,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001575", @@ -232460,7 +253686,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001576", @@ -232480,7 +253708,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001577", @@ -232500,7 +253730,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001578", @@ -232520,7 +253752,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001579", @@ -232540,7 +253774,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001580", @@ -232560,7 +253796,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001581", @@ -232580,7 +253818,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001582", @@ -232600,7 +253840,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001583", @@ -232620,7 +253862,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001584", @@ -232640,7 +253884,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001585", @@ -232660,7 +253906,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001586", @@ -232680,7 +253928,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001587", @@ -232700,7 +253950,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001588", @@ -232720,7 +253972,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001589", @@ -232740,7 +253994,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001590", @@ -232760,7 +254016,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001591", @@ -232780,7 +254038,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001592", @@ -232800,7 +254060,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001593", @@ -232820,7 +254082,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001594", @@ -232840,7 +254104,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001595", @@ -232860,7 +254126,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001596", @@ -232880,7 +254148,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001597", @@ -232900,7 +254170,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001598", @@ -232920,7 +254192,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001599", @@ -232940,7 +254214,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001600", @@ -232960,7 +254236,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001601", @@ -232980,7 +254258,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001602", @@ -233000,7 +254280,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001603", @@ -233020,7 +254302,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001604", @@ -233040,7 +254324,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E14001605", @@ -233060,7 +254346,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000001", @@ -233080,7 +254368,9 @@ "geography_level": "constituency", "geography_id": "N05000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000002", @@ -233100,7 +254390,9 @@ "geography_level": "constituency", "geography_id": "N05000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000003", @@ -233120,7 +254412,9 @@ "geography_level": "constituency", "geography_id": "N05000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000004", @@ -233140,7 +254434,9 @@ "geography_level": "constituency", "geography_id": "N05000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000005", @@ -233160,7 +254456,9 @@ "geography_level": "constituency", "geography_id": "N05000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000006", @@ -233180,7 +254478,9 @@ "geography_level": "constituency", "geography_id": "N05000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000007", @@ -233200,7 +254500,9 @@ "geography_level": "constituency", "geography_id": "N05000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000008", @@ -233220,7 +254522,9 @@ "geography_level": "constituency", "geography_id": "N05000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000009", @@ -233240,7 +254544,9 @@ "geography_level": "constituency", "geography_id": "N05000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000010", @@ -233260,7 +254566,9 @@ "geography_level": "constituency", "geography_id": "N05000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000011", @@ -233280,7 +254588,9 @@ "geography_level": "constituency", "geography_id": "N05000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000012", @@ -233300,7 +254610,9 @@ "geography_level": "constituency", "geography_id": "N05000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000013", @@ -233320,7 +254632,9 @@ "geography_level": "constituency", "geography_id": "N05000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000014", @@ -233340,7 +254654,9 @@ "geography_level": "constituency", "geography_id": "N05000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000015", @@ -233360,7 +254676,9 @@ "geography_level": "constituency", "geography_id": "N05000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000016", @@ -233380,7 +254698,9 @@ "geography_level": "constituency", "geography_id": "N05000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000017", @@ -233400,7 +254720,9 @@ "geography_level": "constituency", "geography_id": "N05000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N05000018", @@ -233420,7 +254742,9 @@ "geography_level": "constituency", "geography_id": "N05000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000021", @@ -233440,7 +254764,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000027", @@ -233460,7 +254786,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000045", @@ -233480,7 +254808,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000048", @@ -233500,7 +254830,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000051", @@ -233520,7 +254852,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000060", @@ -233540,7 +254874,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000061", @@ -233560,7 +254896,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000062", @@ -233580,7 +254918,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000063", @@ -233600,7 +254940,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000064", @@ -233620,7 +254962,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000065", @@ -233640,7 +254984,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000066", @@ -233660,7 +255006,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000067", @@ -233680,7 +255028,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000068", @@ -233700,7 +255050,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000069", @@ -233720,7 +255072,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000070", @@ -233740,7 +255094,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000071", @@ -233760,7 +255116,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000072", @@ -233780,7 +255138,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000073", @@ -233800,7 +255160,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000074", @@ -233820,7 +255182,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000075", @@ -233840,7 +255204,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000076", @@ -233860,7 +255226,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000077", @@ -233880,7 +255248,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000078", @@ -233900,7 +255270,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000079", @@ -233920,7 +255292,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000080", @@ -233940,7 +255314,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000081", @@ -233960,7 +255336,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000082", @@ -233980,7 +255358,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000083", @@ -234000,7 +255380,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000084", @@ -234020,7 +255402,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000085", @@ -234040,7 +255424,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000086", @@ -234060,7 +255446,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000087", @@ -234080,7 +255468,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000088", @@ -234100,7 +255490,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000089", @@ -234120,7 +255512,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000090", @@ -234140,7 +255534,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000091", @@ -234160,7 +255556,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000092", @@ -234180,7 +255578,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000093", @@ -234200,7 +255600,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000094", @@ -234220,7 +255622,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000095", @@ -234240,7 +255644,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000096", @@ -234260,7 +255666,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000097", @@ -234280,7 +255688,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000098", @@ -234300,7 +255710,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000099", @@ -234320,7 +255732,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000100", @@ -234340,7 +255754,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000101", @@ -234360,7 +255776,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000102", @@ -234380,7 +255798,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000103", @@ -234400,7 +255820,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000104", @@ -234420,7 +255842,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000105", @@ -234440,7 +255864,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000106", @@ -234460,7 +255886,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000107", @@ -234480,7 +255908,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000108", @@ -234500,7 +255930,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000109", @@ -234520,7 +255952,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000110", @@ -234540,7 +255974,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S14000111", @@ -234560,7 +255996,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000081", @@ -234580,7 +256018,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000082", @@ -234600,7 +256040,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000083", @@ -234620,7 +256062,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000084", @@ -234640,7 +256084,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000085", @@ -234660,7 +256106,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000086", @@ -234680,7 +256128,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000087", @@ -234700,7 +256150,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000088", @@ -234720,7 +256172,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000089", @@ -234740,7 +256194,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000090", @@ -234760,7 +256216,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000091", @@ -234780,7 +256238,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000092", @@ -234800,7 +256260,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000093", @@ -234820,7 +256282,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000094", @@ -234840,7 +256304,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000095", @@ -234860,7 +256326,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000096", @@ -234880,7 +256348,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000097", @@ -234900,7 +256370,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000098", @@ -234920,7 +256392,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000099", @@ -234940,7 +256414,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000100", @@ -234960,7 +256436,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000101", @@ -234980,7 +256458,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000102", @@ -235000,7 +256480,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000103", @@ -235020,7 +256502,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000104", @@ -235040,7 +256524,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000105", @@ -235060,7 +256546,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000106", @@ -235080,7 +256568,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000107", @@ -235100,7 +256590,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000108", @@ -235120,7 +256612,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000109", @@ -235140,7 +256634,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000110", @@ -235160,7 +256656,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000111", @@ -235180,7 +256678,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W07000112", @@ -235200,7 +256700,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000001", @@ -235220,7 +256722,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000002", @@ -235240,7 +256744,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000003", @@ -235260,7 +256766,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000004", @@ -235280,7 +256788,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000005", @@ -235300,7 +256810,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000006", @@ -235320,7 +256832,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000007", @@ -235340,7 +256854,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000008", @@ -235360,7 +256876,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000009", @@ -235380,7 +256898,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000010", @@ -235400,7 +256920,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000011", @@ -235420,7 +256942,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000012", @@ -235440,7 +256964,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000013", @@ -235460,7 +256986,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000014", @@ -235480,7 +257008,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000015", @@ -235500,7 +257030,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000016", @@ -235520,7 +257052,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000017", @@ -235540,7 +257074,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000018", @@ -235560,7 +257096,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000019", @@ -235580,7 +257118,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000020", @@ -235600,7 +257140,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000021", @@ -235620,7 +257162,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000022", @@ -235640,7 +257184,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000023", @@ -235660,7 +257206,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000024", @@ -235680,7 +257228,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000025", @@ -235700,7 +257250,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000026", @@ -235720,7 +257272,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000027", @@ -235740,7 +257294,9 @@ "geography_level": "local_authority", "geography_id": "E06000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000030", @@ -235760,7 +257316,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000031", @@ -235780,7 +257338,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000032", @@ -235800,7 +257360,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000033", @@ -235820,7 +257382,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000034", @@ -235840,7 +257404,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000035", @@ -235860,7 +257426,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000036", @@ -235880,7 +257448,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000037", @@ -235900,7 +257470,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000038", @@ -235920,7 +257492,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000039", @@ -235940,7 +257514,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000040", @@ -235960,7 +257536,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000041", @@ -235980,7 +257558,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000042", @@ -236000,7 +257580,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000043", @@ -236020,7 +257602,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000044", @@ -236040,7 +257624,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000045", @@ -236060,7 +257646,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000046", @@ -236080,7 +257668,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000047", @@ -236100,7 +257690,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000049", @@ -236120,7 +257712,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000050", @@ -236140,7 +257734,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000051", @@ -236160,7 +257756,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000052", @@ -236180,7 +257778,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000053", @@ -236200,7 +257800,9 @@ "geography_level": "local_authority", "geography_id": "E06000053" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000054", @@ -236220,7 +257822,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000055", @@ -236240,7 +257844,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000056", @@ -236260,7 +257866,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000057", @@ -236280,7 +257888,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000058", @@ -236300,7 +257910,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000059", @@ -236320,7 +257932,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000060", @@ -236340,7 +257954,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000061", @@ -236360,7 +257976,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000062", @@ -236380,7 +257998,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000063", @@ -236400,7 +258020,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000064", @@ -236420,7 +258042,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000065", @@ -236440,7 +258064,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E06000066", @@ -236460,7 +258086,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000008", @@ -236480,7 +258108,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000009", @@ -236500,7 +258130,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000010", @@ -236520,7 +258152,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000011", @@ -236540,7 +258174,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000012", @@ -236560,7 +258196,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000032", @@ -236580,7 +258218,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000033", @@ -236600,7 +258240,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000034", @@ -236620,7 +258262,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000035", @@ -236640,7 +258284,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000036", @@ -236660,7 +258306,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000037", @@ -236680,7 +258328,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000038", @@ -236700,7 +258350,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000039", @@ -236720,7 +258372,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000040", @@ -236740,7 +258394,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000041", @@ -236760,7 +258416,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000042", @@ -236780,7 +258438,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000043", @@ -236800,7 +258460,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000044", @@ -236820,7 +258482,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000045", @@ -236840,7 +258504,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000046", @@ -236860,7 +258526,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000047", @@ -236880,7 +258548,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000061", @@ -236900,7 +258570,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000062", @@ -236920,7 +258592,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000063", @@ -236940,7 +258614,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000064", @@ -236960,7 +258636,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000065", @@ -236980,7 +258658,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000066", @@ -237000,7 +258680,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000067", @@ -237020,7 +258702,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000068", @@ -237040,7 +258724,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000069", @@ -237060,7 +258746,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000070", @@ -237080,7 +258768,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000071", @@ -237100,7 +258790,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000072", @@ -237120,7 +258812,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000073", @@ -237140,7 +258834,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000074", @@ -237160,7 +258856,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000075", @@ -237180,7 +258878,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000076", @@ -237200,7 +258900,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000077", @@ -237220,7 +258922,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000078", @@ -237240,7 +258944,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000079", @@ -237260,7 +258966,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000080", @@ -237280,7 +258988,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000081", @@ -237300,7 +259010,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000082", @@ -237320,7 +259032,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000083", @@ -237340,7 +259054,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000084", @@ -237360,7 +259076,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000085", @@ -237380,7 +259098,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000086", @@ -237400,7 +259120,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000087", @@ -237420,7 +259142,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000088", @@ -237440,7 +259164,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000089", @@ -237460,7 +259186,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000090", @@ -237480,7 +259208,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000091", @@ -237500,7 +259230,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000092", @@ -237520,7 +259252,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000093", @@ -237540,7 +259274,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000094", @@ -237560,7 +259296,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000095", @@ -237580,7 +259318,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000096", @@ -237600,7 +259340,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000098", @@ -237620,7 +259362,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000099", @@ -237640,7 +259384,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000102", @@ -237660,7 +259406,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000103", @@ -237680,7 +259428,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000105", @@ -237700,7 +259450,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000106", @@ -237720,7 +259472,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000107", @@ -237740,7 +259494,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000108", @@ -237760,7 +259516,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000109", @@ -237780,7 +259538,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000110", @@ -237800,7 +259560,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000111", @@ -237820,7 +259582,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000112", @@ -237840,7 +259604,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000113", @@ -237860,7 +259626,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000114", @@ -237880,7 +259648,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000115", @@ -237900,7 +259670,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000116", @@ -237920,7 +259692,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000117", @@ -237940,7 +259714,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000118", @@ -237960,7 +259736,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000119", @@ -237980,7 +259758,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000120", @@ -238000,7 +259780,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000121", @@ -238020,7 +259802,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000122", @@ -238040,7 +259824,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000123", @@ -238060,7 +259846,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000124", @@ -238080,7 +259868,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000125", @@ -238100,7 +259890,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000126", @@ -238120,7 +259912,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000127", @@ -238140,7 +259934,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000128", @@ -238160,7 +259956,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000129", @@ -238180,7 +259978,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000130", @@ -238200,7 +260000,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000131", @@ -238220,7 +260022,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000132", @@ -238240,7 +260044,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000133", @@ -238260,7 +260066,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000134", @@ -238280,7 +260088,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000135", @@ -238300,7 +260110,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000136", @@ -238320,7 +260132,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000137", @@ -238340,7 +260154,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000138", @@ -238360,7 +260176,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000139", @@ -238380,7 +260198,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000140", @@ -238400,7 +260220,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000141", @@ -238420,7 +260242,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000142", @@ -238440,7 +260264,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000143", @@ -238460,7 +260286,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000144", @@ -238480,7 +260308,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000145", @@ -238500,7 +260330,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000146", @@ -238520,7 +260352,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000147", @@ -238540,7 +260374,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000148", @@ -238560,7 +260396,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000149", @@ -238580,7 +260418,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000170", @@ -238600,7 +260440,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000171", @@ -238620,7 +260462,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000172", @@ -238640,7 +260484,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000173", @@ -238660,7 +260506,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000174", @@ -238680,7 +260528,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000175", @@ -238700,7 +260550,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000176", @@ -238720,7 +260572,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000177", @@ -238740,7 +260594,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000178", @@ -238760,7 +260616,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000179", @@ -238780,7 +260638,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000180", @@ -238800,7 +260660,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000181", @@ -238820,7 +260682,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000192", @@ -238840,7 +260704,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000193", @@ -238860,7 +260726,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000194", @@ -238880,7 +260748,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000195", @@ -238900,7 +260770,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000196", @@ -238920,7 +260792,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000197", @@ -238940,7 +260814,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000198", @@ -238960,7 +260836,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000199", @@ -238980,7 +260858,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000200", @@ -239000,7 +260880,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000202", @@ -239020,7 +260902,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000203", @@ -239040,7 +260924,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000207", @@ -239060,7 +260946,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000208", @@ -239080,7 +260968,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000209", @@ -239100,7 +260990,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000210", @@ -239120,7 +261012,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000211", @@ -239140,7 +261034,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000212", @@ -239160,7 +261056,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000213", @@ -239180,7 +261078,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000214", @@ -239200,7 +261100,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000215", @@ -239220,7 +261122,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000216", @@ -239240,7 +261144,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000217", @@ -239260,7 +261166,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000218", @@ -239280,7 +261188,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000219", @@ -239300,7 +261210,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000220", @@ -239320,7 +261232,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000221", @@ -239340,7 +261254,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000222", @@ -239360,7 +261276,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000223", @@ -239380,7 +261298,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000224", @@ -239400,7 +261320,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000225", @@ -239420,7 +261342,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000226", @@ -239440,7 +261364,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000227", @@ -239460,7 +261386,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000228", @@ -239480,7 +261408,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000229", @@ -239500,7 +261430,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000234", @@ -239520,7 +261452,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000235", @@ -239540,7 +261474,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000236", @@ -239560,7 +261496,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000237", @@ -239580,7 +261518,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000238", @@ -239600,7 +261540,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000239", @@ -239620,7 +261562,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000240", @@ -239640,7 +261584,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000241", @@ -239660,7 +261606,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000242", @@ -239680,7 +261628,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000243", @@ -239700,7 +261650,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000244", @@ -239720,7 +261672,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E07000245", @@ -239740,7 +261694,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000001", @@ -239760,7 +261716,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000002", @@ -239780,7 +261738,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000003", @@ -239800,7 +261760,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000004", @@ -239820,7 +261782,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000005", @@ -239840,7 +261804,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000006", @@ -239860,7 +261826,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000007", @@ -239880,7 +261848,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000008", @@ -239900,7 +261870,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000009", @@ -239920,7 +261892,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000010", @@ -239940,7 +261914,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000011", @@ -239960,7 +261936,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000012", @@ -239980,7 +261958,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000013", @@ -240000,7 +261980,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000014", @@ -240020,7 +262002,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000015", @@ -240040,7 +262024,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000016", @@ -240060,7 +262046,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000017", @@ -240080,7 +262068,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000018", @@ -240100,7 +262090,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000019", @@ -240120,7 +262112,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000021", @@ -240140,7 +262134,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000022", @@ -240160,7 +262156,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000023", @@ -240180,7 +262178,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000024", @@ -240200,7 +262200,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000025", @@ -240220,7 +262222,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000026", @@ -240240,7 +262244,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000027", @@ -240260,7 +262266,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000028", @@ -240280,7 +262288,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000029", @@ -240300,7 +262310,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000030", @@ -240320,7 +262332,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000031", @@ -240340,7 +262354,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000032", @@ -240360,7 +262376,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000033", @@ -240380,7 +262398,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000034", @@ -240400,7 +262420,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000035", @@ -240420,7 +262442,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000036", @@ -240440,7 +262464,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E08000037", @@ -240460,7 +262486,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000001", @@ -240480,7 +262508,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000002", @@ -240500,7 +262530,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000003", @@ -240520,7 +262552,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000004", @@ -240540,7 +262574,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000005", @@ -240560,7 +262596,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000006", @@ -240580,7 +262618,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000007", @@ -240600,7 +262640,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000008", @@ -240620,7 +262662,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000009", @@ -240640,7 +262684,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000010", @@ -240660,7 +262706,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000011", @@ -240680,7 +262728,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000012", @@ -240700,7 +262750,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000013", @@ -240720,7 +262772,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000014", @@ -240740,7 +262794,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000015", @@ -240760,7 +262816,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000016", @@ -240780,7 +262838,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000017", @@ -240800,7 +262860,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000018", @@ -240820,7 +262882,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000019", @@ -240840,7 +262904,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000020", @@ -240860,7 +262926,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000021", @@ -240880,7 +262948,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000022", @@ -240900,7 +262970,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000023", @@ -240920,7 +262992,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000024", @@ -240940,7 +263014,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000025", @@ -240960,7 +263036,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000026", @@ -240980,7 +263058,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000027", @@ -241000,7 +263080,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000028", @@ -241020,7 +263102,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000029", @@ -241040,7 +263124,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000030", @@ -241060,7 +263146,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000031", @@ -241080,7 +263168,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000032", @@ -241100,7 +263190,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@E09000033", @@ -241120,7 +263212,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000001", @@ -241140,7 +263234,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000002", @@ -241160,7 +263256,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000003", @@ -241180,7 +263278,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000004", @@ -241200,7 +263300,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000005", @@ -241220,7 +263322,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000006", @@ -241240,7 +263344,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000007", @@ -241260,7 +263366,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000008", @@ -241280,7 +263388,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000009", @@ -241300,7 +263410,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000010", @@ -241320,7 +263432,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@N09000011", @@ -241340,7 +263454,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000005", @@ -241360,7 +263476,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000006", @@ -241380,7 +263498,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000008", @@ -241400,7 +263520,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000010", @@ -241420,7 +263542,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000011", @@ -241440,7 +263564,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000013", @@ -241460,7 +263586,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000014", @@ -241480,7 +263608,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000017", @@ -241500,7 +263630,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000018", @@ -241520,7 +263652,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000019", @@ -241540,7 +263674,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000020", @@ -241560,7 +263696,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000021", @@ -241580,7 +263718,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000023", @@ -241600,7 +263740,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000026", @@ -241620,7 +263762,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000027", @@ -241640,7 +263784,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000028", @@ -241660,7 +263806,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000029", @@ -241680,7 +263828,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000030", @@ -241700,7 +263850,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000033", @@ -241720,7 +263872,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000034", @@ -241740,7 +263894,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000035", @@ -241760,7 +263916,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000036", @@ -241780,7 +263938,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000038", @@ -241800,7 +263960,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000039", @@ -241820,7 +263982,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000040", @@ -241840,7 +264004,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000041", @@ -241860,7 +264026,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000042", @@ -241880,7 +264048,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000045", @@ -241900,7 +264070,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000047", @@ -241920,7 +264092,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000048", @@ -241940,7 +264114,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000049", @@ -241960,7 +264136,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@S12000050", @@ -241980,7 +264158,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000001", @@ -242000,7 +264180,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000002", @@ -242020,7 +264202,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000003", @@ -242040,7 +264224,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000004", @@ -242060,7 +264246,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000005", @@ -242080,7 +264268,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000006", @@ -242100,7 +264290,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000008", @@ -242120,7 +264312,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000009", @@ -242140,7 +264334,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000010", @@ -242160,7 +264356,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000011", @@ -242180,7 +264378,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000012", @@ -242200,7 +264400,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000013", @@ -242220,7 +264422,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000014", @@ -242240,7 +264444,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000015", @@ -242260,7 +264466,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000016", @@ -242280,7 +264488,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000018", @@ -242300,7 +264510,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000019", @@ -242320,7 +264532,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000020", @@ -242340,7 +264554,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000021", @@ -242360,7 +264576,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000022", @@ -242380,7 +264598,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000023", @@ -242400,7 +264620,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.60_70@W06000024", @@ -242420,7 +264642,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001063", @@ -242440,7 +264664,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001064", @@ -242460,7 +264686,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001065", @@ -242480,7 +264708,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001066", @@ -242500,7 +264730,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001067", @@ -242520,7 +264752,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001068", @@ -242540,7 +264774,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001069", @@ -242560,7 +264796,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001070", @@ -242580,7 +264818,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001071", @@ -242600,7 +264840,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001072", @@ -242620,7 +264862,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001073", @@ -242640,7 +264884,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001074", @@ -242660,7 +264906,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001075", @@ -242680,7 +264928,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001076", @@ -242700,7 +264950,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001077", @@ -242720,7 +264972,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001078", @@ -242740,7 +264994,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001079", @@ -242760,7 +265016,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001080", @@ -242780,7 +265038,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001081", @@ -242800,7 +265060,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001082", @@ -242820,7 +265082,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001083", @@ -242840,7 +265104,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001084", @@ -242860,7 +265126,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001085", @@ -242880,7 +265148,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001086", @@ -242900,7 +265170,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001087", @@ -242920,7 +265192,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001088", @@ -242940,7 +265214,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001089", @@ -242960,7 +265236,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001090", @@ -242980,7 +265258,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001091", @@ -243000,7 +265280,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001092", @@ -243020,7 +265302,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001093", @@ -243040,7 +265324,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001094", @@ -243060,7 +265346,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001095", @@ -243080,7 +265368,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001096", @@ -243100,7 +265390,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001097", @@ -243120,7 +265412,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001098", @@ -243140,7 +265434,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001099", @@ -243160,7 +265456,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001100", @@ -243180,7 +265478,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001101", @@ -243200,7 +265500,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001102", @@ -243220,7 +265522,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001103", @@ -243240,7 +265544,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001104", @@ -243260,7 +265566,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001105", @@ -243280,7 +265588,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001106", @@ -243300,7 +265610,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001107", @@ -243320,7 +265632,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001108", @@ -243340,7 +265654,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001109", @@ -243360,7 +265676,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001110", @@ -243380,7 +265698,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001111", @@ -243400,7 +265720,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001112", @@ -243420,7 +265742,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001113", @@ -243440,7 +265764,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001114", @@ -243460,7 +265786,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001115", @@ -243480,7 +265808,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001116", @@ -243500,7 +265830,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001117", @@ -243520,7 +265852,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001118", @@ -243540,7 +265874,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001119", @@ -243560,7 +265896,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001120", @@ -243580,7 +265918,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001121", @@ -243600,7 +265940,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001122", @@ -243620,7 +265962,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001123", @@ -243640,7 +265984,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001124", @@ -243660,7 +266006,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001125", @@ -243680,7 +266028,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001126", @@ -243700,7 +266050,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001127", @@ -243720,7 +266072,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001128", @@ -243740,7 +266094,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001129", @@ -243760,7 +266116,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001130", @@ -243780,7 +266138,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001131", @@ -243800,7 +266160,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001132", @@ -243820,7 +266182,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001133", @@ -243840,7 +266204,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001134", @@ -243860,7 +266226,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001135", @@ -243880,7 +266248,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001136", @@ -243900,7 +266270,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001137", @@ -243920,7 +266292,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001138", @@ -243940,7 +266314,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001139", @@ -243960,7 +266336,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001140", @@ -243980,7 +266358,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001141", @@ -244000,7 +266380,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001142", @@ -244020,7 +266402,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001143", @@ -244040,7 +266424,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001144", @@ -244060,7 +266446,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001145", @@ -244080,7 +266468,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001146", @@ -244100,7 +266490,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001147", @@ -244120,7 +266512,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001148", @@ -244140,7 +266534,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001149", @@ -244160,7 +266556,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001150", @@ -244180,7 +266578,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001151", @@ -244200,7 +266600,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001152", @@ -244220,7 +266622,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001153", @@ -244240,7 +266644,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001154", @@ -244260,7 +266666,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001155", @@ -244280,7 +266688,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001156", @@ -244300,7 +266710,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001157", @@ -244320,7 +266732,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001158", @@ -244340,7 +266754,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001159", @@ -244360,7 +266776,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001160", @@ -244380,7 +266798,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001161", @@ -244400,7 +266820,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001162", @@ -244420,7 +266842,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001163", @@ -244440,7 +266864,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001164", @@ -244460,7 +266886,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001165", @@ -244480,7 +266908,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001166", @@ -244500,7 +266930,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001167", @@ -244520,7 +266952,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001168", @@ -244540,7 +266974,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001169", @@ -244560,7 +266996,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001170", @@ -244580,7 +267018,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001171", @@ -244600,7 +267040,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001172", @@ -244620,7 +267062,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001173", @@ -244640,7 +267084,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001174", @@ -244660,7 +267106,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001175", @@ -244680,7 +267128,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001176", @@ -244700,7 +267150,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001177", @@ -244720,7 +267172,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001178", @@ -244740,7 +267194,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001179", @@ -244760,7 +267216,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001180", @@ -244780,7 +267238,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001181", @@ -244800,7 +267260,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001182", @@ -244820,7 +267282,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001183", @@ -244840,7 +267304,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001184", @@ -244860,7 +267326,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001185", @@ -244880,7 +267348,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001186", @@ -244900,7 +267370,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001187", @@ -244920,7 +267392,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001188", @@ -244940,7 +267414,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001189", @@ -244960,7 +267436,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001190", @@ -244980,7 +267458,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001191", @@ -245000,7 +267480,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001192", @@ -245020,7 +267502,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001193", @@ -245040,7 +267524,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001194", @@ -245060,7 +267546,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001195", @@ -245080,7 +267568,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001196", @@ -245100,7 +267590,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001197", @@ -245120,7 +267612,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001198", @@ -245140,7 +267634,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001199", @@ -245160,7 +267656,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001200", @@ -245180,7 +267678,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001201", @@ -245200,7 +267700,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001202", @@ -245220,7 +267722,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001203", @@ -245240,7 +267744,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001204", @@ -245260,7 +267766,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001205", @@ -245280,7 +267788,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001206", @@ -245300,7 +267810,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001207", @@ -245320,7 +267832,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001208", @@ -245340,7 +267854,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001209", @@ -245360,7 +267876,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001210", @@ -245380,7 +267898,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001211", @@ -245400,7 +267920,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001212", @@ -245420,7 +267942,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001213", @@ -245440,7 +267964,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001214", @@ -245460,7 +267986,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001215", @@ -245480,7 +268008,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001216", @@ -245500,7 +268030,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001217", @@ -245520,7 +268052,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001218", @@ -245540,7 +268074,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001219", @@ -245560,7 +268096,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001220", @@ -245580,7 +268118,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001221", @@ -245600,7 +268140,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001222", @@ -245620,7 +268162,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001223", @@ -245640,7 +268184,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001224", @@ -245660,7 +268206,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001225", @@ -245680,7 +268228,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001226", @@ -245700,7 +268250,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001227", @@ -245720,7 +268272,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001228", @@ -245740,7 +268294,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001229", @@ -245760,7 +268316,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001230", @@ -245780,7 +268338,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001231", @@ -245800,7 +268360,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001232", @@ -245820,7 +268382,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001233", @@ -245840,7 +268404,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001234", @@ -245860,7 +268426,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001235", @@ -245880,7 +268448,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001236", @@ -245900,7 +268470,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001237", @@ -245920,7 +268492,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001238", @@ -245940,7 +268514,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001239", @@ -245960,7 +268536,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001240", @@ -245980,7 +268558,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001241", @@ -246000,7 +268580,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001242", @@ -246020,7 +268602,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001243", @@ -246040,7 +268624,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001244", @@ -246060,7 +268646,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001245", @@ -246080,7 +268668,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001246", @@ -246100,7 +268690,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001247", @@ -246120,7 +268712,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001248", @@ -246140,7 +268734,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001249", @@ -246160,7 +268756,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001250", @@ -246180,7 +268778,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001251", @@ -246200,7 +268800,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001252", @@ -246220,7 +268822,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001253", @@ -246240,7 +268844,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001254", @@ -246260,7 +268866,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001255", @@ -246280,7 +268888,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001256", @@ -246300,7 +268910,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001257", @@ -246320,7 +268932,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001258", @@ -246340,7 +268954,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001259", @@ -246360,7 +268976,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001260", @@ -246380,7 +268998,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001261", @@ -246400,7 +269020,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001262", @@ -246420,7 +269042,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001263", @@ -246440,7 +269064,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001264", @@ -246460,7 +269086,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001265", @@ -246480,7 +269108,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001266", @@ -246500,7 +269130,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001267", @@ -246520,7 +269152,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001268", @@ -246540,7 +269174,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001269", @@ -246560,7 +269196,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001270", @@ -246580,7 +269218,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001271", @@ -246600,7 +269240,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001272", @@ -246620,7 +269262,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001273", @@ -246640,7 +269284,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001274", @@ -246660,7 +269306,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001275", @@ -246680,7 +269328,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001276", @@ -246700,7 +269350,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001277", @@ -246720,7 +269372,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001278", @@ -246740,7 +269394,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001279", @@ -246760,7 +269416,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001280", @@ -246780,7 +269438,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001281", @@ -246800,7 +269460,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001282", @@ -246820,7 +269482,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001283", @@ -246840,7 +269504,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001284", @@ -246860,7 +269526,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001285", @@ -246880,7 +269548,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001286", @@ -246900,7 +269570,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001287", @@ -246920,7 +269592,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001288", @@ -246940,7 +269614,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001289", @@ -246960,7 +269636,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001290", @@ -246980,7 +269658,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001291", @@ -247000,7 +269680,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001292", @@ -247020,7 +269702,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001293", @@ -247040,7 +269724,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001294", @@ -247060,7 +269746,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001295", @@ -247080,7 +269768,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001296", @@ -247100,7 +269790,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001297", @@ -247120,7 +269812,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001298", @@ -247140,7 +269834,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001299", @@ -247160,7 +269856,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001300", @@ -247180,7 +269878,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001301", @@ -247200,7 +269900,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001302", @@ -247220,7 +269922,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001303", @@ -247240,7 +269944,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001304", @@ -247260,7 +269966,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001305", @@ -247280,7 +269988,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001306", @@ -247300,7 +270010,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001307", @@ -247320,7 +270032,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001308", @@ -247340,7 +270054,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001309", @@ -247360,7 +270076,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001310", @@ -247380,7 +270098,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001311", @@ -247400,7 +270120,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001312", @@ -247420,7 +270142,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001313", @@ -247440,7 +270164,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001314", @@ -247460,7 +270186,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001315", @@ -247480,7 +270208,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001316", @@ -247500,7 +270230,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001317", @@ -247520,7 +270252,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001318", @@ -247540,7 +270274,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001319", @@ -247560,7 +270296,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001320", @@ -247580,7 +270318,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001321", @@ -247600,7 +270340,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001322", @@ -247620,7 +270362,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001323", @@ -247640,7 +270384,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001324", @@ -247660,7 +270406,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001325", @@ -247680,7 +270428,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001326", @@ -247700,7 +270450,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001327", @@ -247720,7 +270472,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001328", @@ -247740,7 +270494,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001329", @@ -247760,7 +270516,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001330", @@ -247780,7 +270538,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001331", @@ -247800,7 +270560,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001332", @@ -247820,7 +270582,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001333", @@ -247840,7 +270604,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001334", @@ -247860,7 +270626,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001335", @@ -247880,7 +270648,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001336", @@ -247900,7 +270670,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001337", @@ -247920,7 +270692,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001338", @@ -247940,7 +270714,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001339", @@ -247960,7 +270736,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001340", @@ -247980,7 +270758,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001341", @@ -248000,7 +270780,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001342", @@ -248020,7 +270802,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001343", @@ -248040,7 +270824,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001344", @@ -248060,7 +270846,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001345", @@ -248080,7 +270868,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001346", @@ -248100,7 +270890,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001347", @@ -248120,7 +270912,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001348", @@ -248140,7 +270934,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001349", @@ -248160,7 +270956,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001350", @@ -248180,7 +270978,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001351", @@ -248200,7 +271000,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001352", @@ -248220,7 +271022,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001353", @@ -248240,7 +271044,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001354", @@ -248260,7 +271066,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001355", @@ -248280,7 +271088,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001356", @@ -248300,7 +271110,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001357", @@ -248320,7 +271132,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001358", @@ -248340,7 +271154,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001359", @@ -248360,7 +271176,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001360", @@ -248380,7 +271198,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001361", @@ -248400,7 +271220,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001362", @@ -248420,7 +271242,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001363", @@ -248440,7 +271264,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001364", @@ -248460,7 +271286,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001365", @@ -248480,7 +271308,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001366", @@ -248500,7 +271330,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001367", @@ -248520,7 +271352,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001368", @@ -248540,7 +271374,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001369", @@ -248560,7 +271396,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001370", @@ -248580,7 +271418,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001371", @@ -248600,7 +271440,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001372", @@ -248620,7 +271462,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001373", @@ -248640,7 +271484,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001374", @@ -248660,7 +271506,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001375", @@ -248680,7 +271528,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001376", @@ -248700,7 +271550,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001377", @@ -248720,7 +271572,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001378", @@ -248740,7 +271594,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001379", @@ -248760,7 +271616,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001380", @@ -248780,7 +271638,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001381", @@ -248800,7 +271660,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001382", @@ -248820,7 +271682,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001383", @@ -248840,7 +271704,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001384", @@ -248860,7 +271726,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001385", @@ -248880,7 +271748,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001386", @@ -248900,7 +271770,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001387", @@ -248920,7 +271792,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001388", @@ -248940,7 +271814,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001389", @@ -248960,7 +271836,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001390", @@ -248980,7 +271858,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001391", @@ -249000,7 +271880,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001392", @@ -249020,7 +271902,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001393", @@ -249040,7 +271924,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001394", @@ -249060,7 +271946,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001395", @@ -249080,7 +271968,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001396", @@ -249100,7 +271990,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001397", @@ -249120,7 +272012,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001398", @@ -249140,7 +272034,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001399", @@ -249160,7 +272056,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001400", @@ -249180,7 +272078,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001401", @@ -249200,7 +272100,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001402", @@ -249220,7 +272122,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001403", @@ -249240,7 +272144,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001404", @@ -249260,7 +272166,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001405", @@ -249280,7 +272188,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001406", @@ -249300,7 +272210,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001407", @@ -249320,7 +272232,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001408", @@ -249340,7 +272254,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001409", @@ -249360,7 +272276,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001410", @@ -249380,7 +272298,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001411", @@ -249400,7 +272320,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001412", @@ -249420,7 +272342,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001413", @@ -249440,7 +272364,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001414", @@ -249460,7 +272386,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001415", @@ -249480,7 +272408,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001416", @@ -249500,7 +272430,9 @@ "geography_level": "constituency", "geography_id": "E14001416" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001417", @@ -249520,7 +272452,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001418", @@ -249540,7 +272474,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001419", @@ -249560,7 +272496,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001420", @@ -249580,7 +272518,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001421", @@ -249600,7 +272540,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001422", @@ -249620,7 +272562,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001423", @@ -249640,7 +272584,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001424", @@ -249660,7 +272606,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001425", @@ -249680,7 +272628,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001426", @@ -249700,7 +272650,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001427", @@ -249720,7 +272672,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001428", @@ -249740,7 +272694,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001429", @@ -249760,7 +272716,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001430", @@ -249780,7 +272738,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001431", @@ -249800,7 +272760,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001432", @@ -249820,7 +272782,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001433", @@ -249840,7 +272804,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001434", @@ -249860,7 +272826,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001435", @@ -249880,7 +272848,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001436", @@ -249900,7 +272870,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001437", @@ -249920,7 +272892,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001438", @@ -249940,7 +272914,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001439", @@ -249960,7 +272936,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001440", @@ -249980,7 +272958,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001441", @@ -250000,7 +272980,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001442", @@ -250020,7 +273002,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001443", @@ -250040,7 +273024,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001444", @@ -250060,7 +273046,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001445", @@ -250080,7 +273068,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001446", @@ -250100,7 +273090,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001447", @@ -250120,7 +273112,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001448", @@ -250140,7 +273134,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001449", @@ -250160,7 +273156,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001450", @@ -250180,7 +273178,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001451", @@ -250200,7 +273200,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001452", @@ -250220,7 +273222,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001453", @@ -250240,7 +273244,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001454", @@ -250260,7 +273266,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001455", @@ -250280,7 +273288,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001456", @@ -250300,7 +273310,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001457", @@ -250320,7 +273332,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001458", @@ -250340,7 +273354,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001459", @@ -250360,7 +273376,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001460", @@ -250380,7 +273398,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001461", @@ -250400,7 +273420,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001462", @@ -250420,7 +273442,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001463", @@ -250440,7 +273464,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001464", @@ -250460,7 +273486,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001465", @@ -250480,7 +273508,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001466", @@ -250500,7 +273530,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001467", @@ -250520,7 +273552,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001468", @@ -250540,7 +273574,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001469", @@ -250560,7 +273596,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001470", @@ -250580,7 +273618,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001471", @@ -250600,7 +273640,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001472", @@ -250620,7 +273662,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001473", @@ -250640,7 +273684,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001474", @@ -250660,7 +273706,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001475", @@ -250680,7 +273728,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001476", @@ -250700,7 +273750,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001477", @@ -250720,7 +273772,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001478", @@ -250740,7 +273794,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001479", @@ -250760,7 +273816,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001480", @@ -250780,7 +273838,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001481", @@ -250800,7 +273860,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001482", @@ -250820,7 +273882,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001483", @@ -250840,7 +273904,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001484", @@ -250860,7 +273926,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001485", @@ -250880,7 +273948,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001486", @@ -250900,7 +273970,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001487", @@ -250920,7 +273992,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001488", @@ -250940,7 +274014,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001489", @@ -250960,7 +274036,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001490", @@ -250980,7 +274058,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001491", @@ -251000,7 +274080,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001492", @@ -251020,7 +274102,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001493", @@ -251040,7 +274124,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001494", @@ -251060,7 +274146,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001495", @@ -251080,7 +274168,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001496", @@ -251100,7 +274190,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001497", @@ -251120,7 +274212,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001498", @@ -251140,7 +274234,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001499", @@ -251160,7 +274256,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001500", @@ -251180,7 +274278,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001501", @@ -251200,7 +274300,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001502", @@ -251220,7 +274322,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001503", @@ -251240,7 +274344,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001504", @@ -251260,7 +274366,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001505", @@ -251280,7 +274388,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001506", @@ -251300,7 +274410,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001507", @@ -251320,7 +274432,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001508", @@ -251340,7 +274454,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001509", @@ -251360,7 +274476,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001510", @@ -251380,7 +274498,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001511", @@ -251400,7 +274520,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001512", @@ -251420,7 +274542,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001513", @@ -251440,7 +274564,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001514", @@ -251460,7 +274586,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001515", @@ -251480,7 +274608,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001516", @@ -251500,7 +274630,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001517", @@ -251520,7 +274652,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001518", @@ -251540,7 +274674,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001519", @@ -251560,7 +274696,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001520", @@ -251580,7 +274718,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001521", @@ -251600,7 +274740,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001522", @@ -251620,7 +274762,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001523", @@ -251640,7 +274784,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001524", @@ -251660,7 +274806,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001525", @@ -251680,7 +274828,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001526", @@ -251700,7 +274850,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001527", @@ -251720,7 +274872,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001528", @@ -251740,7 +274894,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001529", @@ -251760,7 +274916,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001530", @@ -251780,7 +274938,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001531", @@ -251800,7 +274960,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001532", @@ -251820,7 +274982,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001533", @@ -251840,7 +275004,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001534", @@ -251860,7 +275026,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001535", @@ -251880,7 +275048,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001536", @@ -251900,7 +275070,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001537", @@ -251920,7 +275092,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001538", @@ -251940,7 +275114,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001539", @@ -251960,7 +275136,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001540", @@ -251980,7 +275158,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001541", @@ -252000,7 +275180,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001542", @@ -252020,7 +275202,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001543", @@ -252040,7 +275224,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001544", @@ -252060,7 +275246,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001545", @@ -252080,7 +275268,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001546", @@ -252100,7 +275290,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001547", @@ -252120,7 +275312,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001548", @@ -252140,7 +275334,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001549", @@ -252160,7 +275356,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001550", @@ -252180,7 +275378,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001551", @@ -252200,7 +275400,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001552", @@ -252220,7 +275422,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001553", @@ -252240,7 +275444,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001554", @@ -252260,7 +275466,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001555", @@ -252280,7 +275488,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001556", @@ -252300,7 +275510,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001557", @@ -252320,7 +275532,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001558", @@ -252340,7 +275554,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001559", @@ -252360,7 +275576,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001560", @@ -252380,7 +275598,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001561", @@ -252400,7 +275620,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001562", @@ -252420,7 +275642,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001563", @@ -252440,7 +275664,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001564", @@ -252460,7 +275686,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001565", @@ -252480,7 +275708,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001566", @@ -252500,7 +275730,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001567", @@ -252520,7 +275752,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001568", @@ -252540,7 +275774,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001569", @@ -252560,7 +275796,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001570", @@ -252580,7 +275818,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001571", @@ -252600,7 +275840,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001572", @@ -252620,7 +275862,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001573", @@ -252640,7 +275884,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001574", @@ -252660,7 +275906,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001575", @@ -252680,7 +275928,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001576", @@ -252700,7 +275950,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001577", @@ -252720,7 +275972,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001578", @@ -252740,7 +275994,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001579", @@ -252760,7 +276016,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001580", @@ -252780,7 +276038,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001581", @@ -252800,7 +276060,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001582", @@ -252820,7 +276082,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001583", @@ -252840,7 +276104,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001584", @@ -252860,7 +276126,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001585", @@ -252880,7 +276148,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001586", @@ -252900,7 +276170,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001587", @@ -252920,7 +276192,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001588", @@ -252940,7 +276214,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001589", @@ -252960,7 +276236,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001590", @@ -252980,7 +276258,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001591", @@ -253000,7 +276280,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001592", @@ -253020,7 +276302,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001593", @@ -253040,7 +276324,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001594", @@ -253060,7 +276346,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001595", @@ -253080,7 +276368,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001596", @@ -253100,7 +276390,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001597", @@ -253120,7 +276412,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001598", @@ -253140,7 +276434,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001599", @@ -253160,7 +276456,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001600", @@ -253180,7 +276478,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001601", @@ -253200,7 +276500,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001602", @@ -253220,7 +276522,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001603", @@ -253240,7 +276544,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001604", @@ -253260,7 +276566,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E14001605", @@ -253280,7 +276588,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000001", @@ -253300,7 +276610,9 @@ "geography_level": "constituency", "geography_id": "N05000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000002", @@ -253320,7 +276632,9 @@ "geography_level": "constituency", "geography_id": "N05000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000003", @@ -253340,7 +276654,9 @@ "geography_level": "constituency", "geography_id": "N05000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000004", @@ -253360,7 +276676,9 @@ "geography_level": "constituency", "geography_id": "N05000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000005", @@ -253380,7 +276698,9 @@ "geography_level": "constituency", "geography_id": "N05000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000006", @@ -253400,7 +276720,9 @@ "geography_level": "constituency", "geography_id": "N05000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000007", @@ -253420,7 +276742,9 @@ "geography_level": "constituency", "geography_id": "N05000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000008", @@ -253440,7 +276764,9 @@ "geography_level": "constituency", "geography_id": "N05000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000009", @@ -253460,7 +276786,9 @@ "geography_level": "constituency", "geography_id": "N05000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000010", @@ -253480,7 +276808,9 @@ "geography_level": "constituency", "geography_id": "N05000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000011", @@ -253500,7 +276830,9 @@ "geography_level": "constituency", "geography_id": "N05000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000012", @@ -253520,7 +276852,9 @@ "geography_level": "constituency", "geography_id": "N05000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000013", @@ -253540,7 +276874,9 @@ "geography_level": "constituency", "geography_id": "N05000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000014", @@ -253560,7 +276896,9 @@ "geography_level": "constituency", "geography_id": "N05000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000015", @@ -253580,7 +276918,9 @@ "geography_level": "constituency", "geography_id": "N05000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000016", @@ -253600,7 +276940,9 @@ "geography_level": "constituency", "geography_id": "N05000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000017", @@ -253620,7 +276962,9 @@ "geography_level": "constituency", "geography_id": "N05000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N05000018", @@ -253640,7 +276984,9 @@ "geography_level": "constituency", "geography_id": "N05000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000021", @@ -253660,7 +277006,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000027", @@ -253680,7 +277028,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000045", @@ -253700,7 +277050,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000048", @@ -253720,7 +277072,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000051", @@ -253740,7 +277094,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000060", @@ -253760,7 +277116,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000061", @@ -253780,7 +277138,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000062", @@ -253800,7 +277160,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000063", @@ -253820,7 +277182,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000064", @@ -253840,7 +277204,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000065", @@ -253860,7 +277226,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000066", @@ -253880,7 +277248,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000067", @@ -253900,7 +277270,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000068", @@ -253920,7 +277292,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000069", @@ -253940,7 +277314,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000070", @@ -253960,7 +277336,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000071", @@ -253980,7 +277358,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000072", @@ -254000,7 +277380,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000073", @@ -254020,7 +277402,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000074", @@ -254040,7 +277424,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000075", @@ -254060,7 +277446,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000076", @@ -254080,7 +277468,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000077", @@ -254100,7 +277490,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000078", @@ -254120,7 +277512,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000079", @@ -254140,7 +277534,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000080", @@ -254160,7 +277556,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000081", @@ -254180,7 +277578,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000082", @@ -254200,7 +277600,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000083", @@ -254220,7 +277622,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000084", @@ -254240,7 +277644,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000085", @@ -254260,7 +277666,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000086", @@ -254280,7 +277688,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000087", @@ -254300,7 +277710,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000088", @@ -254320,7 +277732,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000089", @@ -254340,7 +277754,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000090", @@ -254360,7 +277776,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000091", @@ -254380,7 +277798,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000092", @@ -254400,7 +277820,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000093", @@ -254420,7 +277842,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000094", @@ -254440,7 +277864,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000095", @@ -254460,7 +277886,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000096", @@ -254480,7 +277908,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000097", @@ -254500,7 +277930,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000098", @@ -254520,7 +277952,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000099", @@ -254540,7 +277974,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000100", @@ -254560,7 +277996,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000101", @@ -254580,7 +278018,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000102", @@ -254600,7 +278040,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000103", @@ -254620,7 +278062,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000104", @@ -254640,7 +278084,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000105", @@ -254660,7 +278106,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000106", @@ -254680,7 +278128,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000107", @@ -254700,7 +278150,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000108", @@ -254720,7 +278172,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000109", @@ -254740,7 +278194,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000110", @@ -254760,7 +278216,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S14000111", @@ -254780,7 +278238,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000081", @@ -254800,7 +278260,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000082", @@ -254820,7 +278282,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000083", @@ -254840,7 +278304,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000084", @@ -254860,7 +278326,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000085", @@ -254880,7 +278348,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000086", @@ -254900,7 +278370,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000087", @@ -254920,7 +278392,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000088", @@ -254940,7 +278414,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000089", @@ -254960,7 +278436,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000090", @@ -254980,7 +278458,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000091", @@ -255000,7 +278480,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000092", @@ -255020,7 +278502,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000093", @@ -255040,7 +278524,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000094", @@ -255060,7 +278546,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000095", @@ -255080,7 +278568,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000096", @@ -255100,7 +278590,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000097", @@ -255120,7 +278612,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000098", @@ -255140,7 +278634,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000099", @@ -255160,7 +278656,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000100", @@ -255180,7 +278678,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000101", @@ -255200,7 +278700,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000102", @@ -255220,7 +278722,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000103", @@ -255240,7 +278744,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000104", @@ -255260,7 +278766,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000105", @@ -255280,7 +278788,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000106", @@ -255300,7 +278810,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000107", @@ -255320,7 +278832,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000108", @@ -255340,7 +278854,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000109", @@ -255360,7 +278876,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000110", @@ -255380,7 +278898,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000111", @@ -255400,7 +278920,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W07000112", @@ -255420,7 +278942,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000001", @@ -255440,7 +278964,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000002", @@ -255460,7 +278986,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000003", @@ -255480,7 +279008,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000004", @@ -255500,7 +279030,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000005", @@ -255520,7 +279052,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000006", @@ -255540,7 +279074,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000007", @@ -255560,7 +279096,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000008", @@ -255580,7 +279118,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000009", @@ -255600,7 +279140,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000010", @@ -255620,7 +279162,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000011", @@ -255640,7 +279184,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000012", @@ -255660,7 +279206,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000013", @@ -255680,7 +279228,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000014", @@ -255700,7 +279250,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000015", @@ -255720,7 +279272,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000016", @@ -255740,7 +279294,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000017", @@ -255760,7 +279316,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000018", @@ -255780,7 +279338,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000019", @@ -255800,7 +279360,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000020", @@ -255820,7 +279382,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000021", @@ -255840,7 +279404,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000022", @@ -255860,7 +279426,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000023", @@ -255880,7 +279448,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000024", @@ -255900,7 +279470,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000025", @@ -255920,7 +279492,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000026", @@ -255940,7 +279514,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000027", @@ -255960,7 +279536,9 @@ "geography_level": "local_authority", "geography_id": "E06000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000030", @@ -255980,7 +279558,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000031", @@ -256000,7 +279580,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000032", @@ -256020,7 +279602,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000033", @@ -256040,7 +279624,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000034", @@ -256060,7 +279646,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000035", @@ -256080,7 +279668,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000036", @@ -256100,7 +279690,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000037", @@ -256120,7 +279712,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000038", @@ -256140,7 +279734,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000039", @@ -256160,7 +279756,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000040", @@ -256180,7 +279778,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000041", @@ -256200,7 +279800,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000042", @@ -256220,7 +279822,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000043", @@ -256240,7 +279844,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000044", @@ -256260,7 +279866,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000045", @@ -256280,7 +279888,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000046", @@ -256300,7 +279910,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000047", @@ -256320,7 +279932,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000049", @@ -256340,7 +279954,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000050", @@ -256360,7 +279976,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000051", @@ -256380,7 +279998,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000052", @@ -256400,7 +280020,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000053", @@ -256420,7 +280042,9 @@ "geography_level": "local_authority", "geography_id": "E06000053" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000054", @@ -256440,7 +280064,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000055", @@ -256460,7 +280086,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000056", @@ -256480,7 +280108,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000057", @@ -256500,7 +280130,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000058", @@ -256520,7 +280152,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000059", @@ -256540,7 +280174,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000060", @@ -256560,7 +280196,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000061", @@ -256580,7 +280218,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000062", @@ -256600,7 +280240,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000063", @@ -256620,7 +280262,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000064", @@ -256640,7 +280284,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000065", @@ -256660,7 +280306,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E06000066", @@ -256680,7 +280328,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000008", @@ -256700,7 +280350,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000009", @@ -256720,7 +280372,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000010", @@ -256740,7 +280394,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000011", @@ -256760,7 +280416,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000012", @@ -256780,7 +280438,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000032", @@ -256800,7 +280460,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000033", @@ -256820,7 +280482,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000034", @@ -256840,7 +280504,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000035", @@ -256860,7 +280526,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000036", @@ -256880,7 +280548,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000037", @@ -256900,7 +280570,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000038", @@ -256920,7 +280592,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000039", @@ -256940,7 +280614,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000040", @@ -256960,7 +280636,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000041", @@ -256980,7 +280658,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000042", @@ -257000,7 +280680,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000043", @@ -257020,7 +280702,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000044", @@ -257040,7 +280724,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000045", @@ -257060,7 +280746,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000046", @@ -257080,7 +280768,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000047", @@ -257100,7 +280790,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000061", @@ -257120,7 +280812,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000062", @@ -257140,7 +280834,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000063", @@ -257160,7 +280856,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000064", @@ -257180,7 +280878,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000065", @@ -257200,7 +280900,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000066", @@ -257220,7 +280922,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000067", @@ -257240,7 +280944,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000068", @@ -257260,7 +280966,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000069", @@ -257280,7 +280988,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000070", @@ -257300,7 +281010,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000071", @@ -257320,7 +281032,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000072", @@ -257340,7 +281054,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000073", @@ -257360,7 +281076,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000074", @@ -257380,7 +281098,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000075", @@ -257400,7 +281120,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000076", @@ -257420,7 +281142,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000077", @@ -257440,7 +281164,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000078", @@ -257460,7 +281186,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000079", @@ -257480,7 +281208,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000080", @@ -257500,7 +281230,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000081", @@ -257520,7 +281252,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000082", @@ -257540,7 +281274,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000083", @@ -257560,7 +281296,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000084", @@ -257580,7 +281318,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000085", @@ -257600,7 +281340,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000086", @@ -257620,7 +281362,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000087", @@ -257640,7 +281384,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000088", @@ -257660,7 +281406,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000089", @@ -257680,7 +281428,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000090", @@ -257700,7 +281450,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000091", @@ -257720,7 +281472,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000092", @@ -257740,7 +281494,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000093", @@ -257760,7 +281516,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000094", @@ -257780,7 +281538,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000095", @@ -257800,7 +281560,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000096", @@ -257820,7 +281582,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000098", @@ -257840,7 +281604,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000099", @@ -257860,7 +281626,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000102", @@ -257880,7 +281648,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000103", @@ -257900,7 +281670,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000105", @@ -257920,7 +281692,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000106", @@ -257940,7 +281714,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000107", @@ -257960,7 +281736,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000108", @@ -257980,7 +281758,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000109", @@ -258000,7 +281780,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000110", @@ -258020,7 +281802,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000111", @@ -258040,7 +281824,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000112", @@ -258060,7 +281846,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000113", @@ -258080,7 +281868,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000114", @@ -258100,7 +281890,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000115", @@ -258120,7 +281912,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000116", @@ -258140,7 +281934,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000117", @@ -258160,7 +281956,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000118", @@ -258180,7 +281978,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000119", @@ -258200,7 +282000,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000120", @@ -258220,7 +282022,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000121", @@ -258240,7 +282044,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000122", @@ -258260,7 +282066,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000123", @@ -258280,7 +282088,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000124", @@ -258300,7 +282110,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000125", @@ -258320,7 +282132,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000126", @@ -258340,7 +282154,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000127", @@ -258360,7 +282176,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000128", @@ -258380,7 +282198,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000129", @@ -258400,7 +282220,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000130", @@ -258420,7 +282242,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000131", @@ -258440,7 +282264,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000132", @@ -258460,7 +282286,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000133", @@ -258480,7 +282308,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000134", @@ -258500,7 +282330,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000135", @@ -258520,7 +282352,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000136", @@ -258540,7 +282374,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000137", @@ -258560,7 +282396,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000138", @@ -258580,7 +282418,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000139", @@ -258600,7 +282440,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000140", @@ -258620,7 +282462,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000141", @@ -258640,7 +282484,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000142", @@ -258660,7 +282506,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000143", @@ -258680,7 +282528,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000144", @@ -258700,7 +282550,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000145", @@ -258720,7 +282572,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000146", @@ -258740,7 +282594,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000147", @@ -258760,7 +282616,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000148", @@ -258780,7 +282638,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000149", @@ -258800,7 +282660,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000170", @@ -258820,7 +282682,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000171", @@ -258840,7 +282704,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000172", @@ -258860,7 +282726,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000173", @@ -258880,7 +282748,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000174", @@ -258900,7 +282770,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000175", @@ -258920,7 +282792,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000176", @@ -258940,7 +282814,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000177", @@ -258960,7 +282836,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000178", @@ -258980,7 +282858,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000179", @@ -259000,7 +282880,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000180", @@ -259020,7 +282902,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000181", @@ -259040,7 +282924,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000192", @@ -259060,7 +282946,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000193", @@ -259080,7 +282968,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000194", @@ -259100,7 +282990,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000195", @@ -259120,7 +283012,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000196", @@ -259140,7 +283034,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000197", @@ -259160,7 +283056,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000198", @@ -259180,7 +283078,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000199", @@ -259200,7 +283100,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000200", @@ -259220,7 +283122,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000202", @@ -259240,7 +283144,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000203", @@ -259260,7 +283166,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000207", @@ -259280,7 +283188,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000208", @@ -259300,7 +283210,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000209", @@ -259320,7 +283232,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000210", @@ -259340,7 +283254,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000211", @@ -259360,7 +283276,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000212", @@ -259380,7 +283298,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000213", @@ -259400,7 +283320,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000214", @@ -259420,7 +283342,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000215", @@ -259440,7 +283364,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000216", @@ -259460,7 +283386,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000217", @@ -259480,7 +283408,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000218", @@ -259500,7 +283430,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000219", @@ -259520,7 +283452,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000220", @@ -259540,7 +283474,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000221", @@ -259560,7 +283496,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000222", @@ -259580,7 +283518,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000223", @@ -259600,7 +283540,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000224", @@ -259620,7 +283562,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000225", @@ -259640,7 +283584,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000226", @@ -259660,7 +283606,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000227", @@ -259680,7 +283628,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000228", @@ -259700,7 +283650,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000229", @@ -259720,7 +283672,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000234", @@ -259740,7 +283694,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000235", @@ -259760,7 +283716,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000236", @@ -259780,7 +283738,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000237", @@ -259800,7 +283760,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000238", @@ -259820,7 +283782,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000239", @@ -259840,7 +283804,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000240", @@ -259860,7 +283826,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000241", @@ -259880,7 +283848,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000242", @@ -259900,7 +283870,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000243", @@ -259920,7 +283892,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000244", @@ -259940,7 +283914,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E07000245", @@ -259960,7 +283936,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000001", @@ -259980,7 +283958,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000002", @@ -260000,7 +283980,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000003", @@ -260020,7 +284002,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000004", @@ -260040,7 +284024,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000005", @@ -260060,7 +284046,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000006", @@ -260080,7 +284068,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000007", @@ -260100,7 +284090,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000008", @@ -260120,7 +284112,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000009", @@ -260140,7 +284134,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000010", @@ -260160,7 +284156,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000011", @@ -260180,7 +284178,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000012", @@ -260200,7 +284200,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000013", @@ -260220,7 +284222,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000014", @@ -260240,7 +284244,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000015", @@ -260260,7 +284266,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000016", @@ -260280,7 +284288,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000017", @@ -260300,7 +284310,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000018", @@ -260320,7 +284332,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000019", @@ -260340,7 +284354,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000021", @@ -260360,7 +284376,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000022", @@ -260380,7 +284398,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000023", @@ -260400,7 +284420,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000024", @@ -260420,7 +284442,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000025", @@ -260440,7 +284464,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000026", @@ -260460,7 +284486,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000027", @@ -260480,7 +284508,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000028", @@ -260500,7 +284530,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000029", @@ -260520,7 +284552,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000030", @@ -260540,7 +284574,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000031", @@ -260560,7 +284596,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000032", @@ -260580,7 +284618,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000033", @@ -260600,7 +284640,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000034", @@ -260620,7 +284662,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000035", @@ -260640,7 +284684,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000036", @@ -260660,7 +284706,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E08000037", @@ -260680,7 +284728,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000001", @@ -260700,7 +284750,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000002", @@ -260720,7 +284772,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000003", @@ -260740,7 +284794,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000004", @@ -260760,7 +284816,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000005", @@ -260780,7 +284838,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000006", @@ -260800,7 +284860,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000007", @@ -260820,7 +284882,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000008", @@ -260840,7 +284904,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000009", @@ -260860,7 +284926,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000010", @@ -260880,7 +284948,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000011", @@ -260900,7 +284970,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000012", @@ -260920,7 +284992,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000013", @@ -260940,7 +285014,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000014", @@ -260960,7 +285036,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000015", @@ -260980,7 +285058,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000016", @@ -261000,7 +285080,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000017", @@ -261020,7 +285102,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000018", @@ -261040,7 +285124,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000019", @@ -261060,7 +285146,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000020", @@ -261080,7 +285168,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000021", @@ -261100,7 +285190,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000022", @@ -261120,7 +285212,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000023", @@ -261140,7 +285234,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000024", @@ -261160,7 +285256,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000025", @@ -261180,7 +285278,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000026", @@ -261200,7 +285300,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000027", @@ -261220,7 +285322,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000028", @@ -261240,7 +285344,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000029", @@ -261260,7 +285366,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000030", @@ -261280,7 +285388,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000031", @@ -261300,7 +285410,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000032", @@ -261320,7 +285432,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@E09000033", @@ -261340,7 +285454,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000001", @@ -261360,7 +285476,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000002", @@ -261380,7 +285498,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000003", @@ -261400,7 +285520,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000004", @@ -261420,7 +285542,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000005", @@ -261440,7 +285564,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000006", @@ -261460,7 +285586,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000007", @@ -261480,7 +285608,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000008", @@ -261500,7 +285630,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000009", @@ -261520,7 +285652,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000010", @@ -261540,7 +285674,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@N09000011", @@ -261560,7 +285696,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000005", @@ -261580,7 +285718,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000006", @@ -261600,7 +285740,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000008", @@ -261620,7 +285762,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000010", @@ -261640,7 +285784,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000011", @@ -261660,7 +285806,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000013", @@ -261680,7 +285828,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000014", @@ -261700,7 +285850,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000017", @@ -261720,7 +285872,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000018", @@ -261740,7 +285894,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000019", @@ -261760,7 +285916,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000020", @@ -261780,7 +285938,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000021", @@ -261800,7 +285960,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000023", @@ -261820,7 +285982,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000026", @@ -261840,7 +286004,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000027", @@ -261860,7 +286026,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000028", @@ -261880,7 +286048,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000029", @@ -261900,7 +286070,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000030", @@ -261920,7 +286092,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000033", @@ -261940,7 +286114,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000034", @@ -261960,7 +286136,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000035", @@ -261980,7 +286158,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000036", @@ -262000,7 +286180,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000038", @@ -262020,7 +286202,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000039", @@ -262040,7 +286224,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000040", @@ -262060,7 +286246,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000041", @@ -262080,7 +286268,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000042", @@ -262100,7 +286290,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000045", @@ -262120,7 +286312,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000047", @@ -262140,7 +286334,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000048", @@ -262160,7 +286356,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000049", @@ -262180,7 +286378,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@S12000050", @@ -262200,7 +286400,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000001", @@ -262220,7 +286422,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000002", @@ -262240,7 +286444,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000003", @@ -262260,7 +286466,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000004", @@ -262280,7 +286488,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000005", @@ -262300,7 +286510,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000006", @@ -262320,7 +286532,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000008", @@ -262340,7 +286554,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000009", @@ -262360,7 +286576,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000010", @@ -262380,7 +286598,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000011", @@ -262400,7 +286620,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000012", @@ -262420,7 +286642,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000013", @@ -262440,7 +286664,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000014", @@ -262460,7 +286686,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000015", @@ -262480,7 +286708,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000016", @@ -262500,7 +286730,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000018", @@ -262520,7 +286752,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000019", @@ -262540,7 +286774,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000020", @@ -262560,7 +286796,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000021", @@ -262580,7 +286818,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000022", @@ -262600,7 +286840,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000023", @@ -262620,7 +286862,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "ons.age.70_80@W06000024", @@ -262640,7 +286884,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2024", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001063", @@ -262663,7 +286909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001063" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001064", @@ -262686,7 +286934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001064" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001065", @@ -262709,7 +286959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001065" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001066", @@ -262732,7 +286984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001066" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001067", @@ -262755,7 +287009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001067" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001068", @@ -262778,7 +287034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001068" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001069", @@ -262801,7 +287059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001069" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001070", @@ -262824,7 +287084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001070" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001071", @@ -262847,7 +287109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001071" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001072", @@ -262870,7 +287134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001072" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001073", @@ -262893,7 +287159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001073" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001074", @@ -262916,7 +287184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001074" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001075", @@ -262939,7 +287209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001075" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001076", @@ -262962,7 +287234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001076" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001077", @@ -262985,7 +287259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001077" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001078", @@ -263008,7 +287284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001078" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001079", @@ -263031,7 +287309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001079" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001080", @@ -263054,7 +287334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001080" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001081", @@ -263077,7 +287359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001082", @@ -263100,7 +287384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001083", @@ -263123,7 +287409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001084", @@ -263146,7 +287434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001085", @@ -263169,7 +287459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001086", @@ -263192,7 +287484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001087", @@ -263215,7 +287509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001088", @@ -263238,7 +287534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001089", @@ -263261,7 +287559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001090", @@ -263284,7 +287584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001091", @@ -263307,7 +287609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001092", @@ -263330,7 +287634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001093", @@ -263353,7 +287659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001094", @@ -263376,7 +287684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001095", @@ -263399,7 +287709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001096", @@ -263422,7 +287734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001097", @@ -263445,7 +287759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001098", @@ -263468,7 +287784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001099", @@ -263491,7 +287809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001100", @@ -263514,7 +287834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001101", @@ -263537,7 +287859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001102", @@ -263560,7 +287884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001103", @@ -263583,7 +287909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001104", @@ -263606,7 +287934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001105", @@ -263629,7 +287959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001106", @@ -263652,7 +287984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001107", @@ -263675,7 +288009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001108", @@ -263698,7 +288034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001109", @@ -263721,7 +288059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001110", @@ -263744,7 +288084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001111", @@ -263767,7 +288109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001112", @@ -263790,7 +288134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001112" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001113", @@ -263813,7 +288159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001113" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001114", @@ -263836,7 +288184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001114" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001115", @@ -263859,7 +288209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001115" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001116", @@ -263882,7 +288234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001116" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001117", @@ -263905,7 +288259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001117" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001118", @@ -263928,7 +288284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001118" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001119", @@ -263951,7 +288309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001119" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001120", @@ -263974,7 +288334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001120" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001121", @@ -263997,7 +288359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001121" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001122", @@ -264020,7 +288384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001122" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001123", @@ -264043,7 +288409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001123" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001124", @@ -264066,7 +288434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001124" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001125", @@ -264089,7 +288459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001125" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001126", @@ -264112,7 +288484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001126" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001127", @@ -264135,7 +288509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001127" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001128", @@ -264158,7 +288534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001128" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001129", @@ -264181,7 +288559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001129" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001130", @@ -264204,7 +288584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001130" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001131", @@ -264227,7 +288609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001131" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001132", @@ -264250,7 +288634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001132" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001133", @@ -264273,7 +288659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001133" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001134", @@ -264296,7 +288684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001134" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001135", @@ -264319,7 +288709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001135" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001136", @@ -264342,7 +288734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001136" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001137", @@ -264365,7 +288759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001137" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001138", @@ -264388,7 +288784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001138" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001139", @@ -264411,7 +288809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001139" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001140", @@ -264434,7 +288834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001140" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001141", @@ -264457,7 +288859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001141" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001142", @@ -264480,7 +288884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001142" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001143", @@ -264503,7 +288909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001143" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001144", @@ -264526,7 +288934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001144" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001145", @@ -264549,7 +288959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001145" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001146", @@ -264572,7 +288984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001146" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001147", @@ -264595,7 +289009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001147" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001148", @@ -264618,7 +289034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001148" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001149", @@ -264641,7 +289059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001149" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001150", @@ -264664,7 +289084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001150" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001151", @@ -264687,7 +289109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001151" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001152", @@ -264710,7 +289134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001152" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001153", @@ -264733,7 +289159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001153" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001154", @@ -264756,7 +289184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001154" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001155", @@ -264779,7 +289209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001155" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001156", @@ -264802,7 +289234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001156" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001157", @@ -264825,7 +289259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001157" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001158", @@ -264848,7 +289284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001158" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001159", @@ -264871,7 +289309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001159" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001160", @@ -264894,7 +289334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001160" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001161", @@ -264917,7 +289359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001161" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001162", @@ -264940,7 +289384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001162" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001163", @@ -264963,7 +289409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001163" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001164", @@ -264986,7 +289434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001164" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001165", @@ -265009,7 +289459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001165" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001166", @@ -265032,7 +289484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001166" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001167", @@ -265055,7 +289509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001167" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001168", @@ -265078,7 +289534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001168" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001169", @@ -265101,7 +289559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001169" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001170", @@ -265124,7 +289584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001170" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001171", @@ -265147,7 +289609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001171" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001172", @@ -265170,7 +289634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001172" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001173", @@ -265193,7 +289659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001173" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001174", @@ -265216,7 +289684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001174" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001175", @@ -265239,7 +289709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001175" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001176", @@ -265262,7 +289734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001176" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001177", @@ -265285,7 +289759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001177" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001178", @@ -265308,7 +289784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001178" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001179", @@ -265331,7 +289809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001179" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001180", @@ -265354,7 +289834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001180" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001181", @@ -265377,7 +289859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001181" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001182", @@ -265400,7 +289884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001182" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001183", @@ -265423,7 +289909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001183" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001184", @@ -265446,7 +289934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001184" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001185", @@ -265469,7 +289959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001185" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001186", @@ -265492,7 +289984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001186" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001187", @@ -265515,7 +290009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001187" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001188", @@ -265538,7 +290034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001188" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001189", @@ -265561,7 +290059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001189" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001190", @@ -265584,7 +290084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001190" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001191", @@ -265607,7 +290109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001191" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001192", @@ -265630,7 +290134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001192" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001193", @@ -265653,7 +290159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001193" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001194", @@ -265676,7 +290184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001194" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001195", @@ -265699,7 +290209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001195" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001196", @@ -265722,7 +290234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001196" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001197", @@ -265745,7 +290259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001197" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001198", @@ -265768,7 +290284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001198" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001199", @@ -265791,7 +290309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001199" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001200", @@ -265814,7 +290334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001200" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001201", @@ -265837,7 +290359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001201" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001202", @@ -265860,7 +290384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001202" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001203", @@ -265883,7 +290409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001203" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001204", @@ -265906,7 +290434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001204" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001205", @@ -265929,7 +290459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001205" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001206", @@ -265952,7 +290484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001206" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001207", @@ -265975,7 +290509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001207" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001208", @@ -265998,7 +290534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001208" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001209", @@ -266021,7 +290559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001209" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001210", @@ -266044,7 +290584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001210" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001211", @@ -266067,7 +290609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001211" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001212", @@ -266090,7 +290634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001212" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001213", @@ -266113,7 +290659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001213" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001214", @@ -266136,7 +290684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001214" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001215", @@ -266159,7 +290709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001215" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001216", @@ -266182,7 +290734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001216" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001217", @@ -266205,7 +290759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001217" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001218", @@ -266228,7 +290784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001218" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001219", @@ -266251,7 +290809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001219" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001220", @@ -266274,7 +290834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001220" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001221", @@ -266297,7 +290859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001221" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001222", @@ -266320,7 +290884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001222" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001223", @@ -266343,7 +290909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001223" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001224", @@ -266366,7 +290934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001224" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001225", @@ -266389,7 +290959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001225" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001226", @@ -266412,7 +290984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001226" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001227", @@ -266435,7 +291009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001227" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001228", @@ -266458,7 +291034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001228" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001229", @@ -266481,7 +291059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001229" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001230", @@ -266504,7 +291084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001230" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001231", @@ -266527,7 +291109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001231" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001232", @@ -266550,7 +291134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001232" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001233", @@ -266573,7 +291159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001233" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001234", @@ -266596,7 +291184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001234" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001235", @@ -266619,7 +291209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001235" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001236", @@ -266642,7 +291234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001236" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001237", @@ -266665,7 +291259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001237" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001238", @@ -266688,7 +291284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001238" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001239", @@ -266711,7 +291309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001239" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001240", @@ -266734,7 +291334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001240" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001241", @@ -266757,7 +291359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001241" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001242", @@ -266780,7 +291384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001242" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001243", @@ -266803,7 +291409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001243" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001244", @@ -266826,7 +291434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001244" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001245", @@ -266849,7 +291459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001245" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001246", @@ -266872,7 +291484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001246" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001247", @@ -266895,7 +291509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001247" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001248", @@ -266918,7 +291534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001248" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001249", @@ -266941,7 +291559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001249" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001250", @@ -266964,7 +291584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001250" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001251", @@ -266987,7 +291609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001251" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001252", @@ -267010,7 +291634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001252" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001253", @@ -267033,7 +291659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001253" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001254", @@ -267056,7 +291684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001254" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001255", @@ -267079,7 +291709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001255" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001256", @@ -267102,7 +291734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001256" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001257", @@ -267125,7 +291759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001257" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001258", @@ -267148,7 +291784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001258" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001259", @@ -267171,7 +291809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001259" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001260", @@ -267194,7 +291834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001260" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001261", @@ -267217,7 +291859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001261" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001262", @@ -267240,7 +291884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001262" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001263", @@ -267263,7 +291909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001263" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001264", @@ -267286,7 +291934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001264" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001265", @@ -267309,7 +291959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001265" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001266", @@ -267332,7 +291984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001266" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001267", @@ -267355,7 +292009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001267" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001268", @@ -267378,7 +292034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001268" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001269", @@ -267401,7 +292059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001269" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001270", @@ -267424,7 +292084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001270" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001271", @@ -267447,7 +292109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001271" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001272", @@ -267470,7 +292134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001272" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001273", @@ -267493,7 +292159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001273" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001274", @@ -267516,7 +292184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001274" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001275", @@ -267539,7 +292209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001275" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001276", @@ -267562,7 +292234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001276" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001277", @@ -267585,7 +292259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001277" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001278", @@ -267608,7 +292284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001278" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001279", @@ -267631,7 +292309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001279" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001280", @@ -267654,7 +292334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001280" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001281", @@ -267677,7 +292359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001281" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001282", @@ -267700,7 +292384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001282" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001283", @@ -267723,7 +292409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001283" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001284", @@ -267746,7 +292434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001284" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001285", @@ -267769,7 +292459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001285" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001286", @@ -267792,7 +292484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001286" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001287", @@ -267815,7 +292509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001287" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001288", @@ -267838,7 +292534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001288" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001289", @@ -267861,7 +292559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001289" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001290", @@ -267884,7 +292584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001290" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001291", @@ -267907,7 +292609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001291" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001292", @@ -267930,7 +292634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001292" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001293", @@ -267953,7 +292659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001293" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001294", @@ -267976,7 +292684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001294" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001295", @@ -267999,7 +292709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001295" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001296", @@ -268022,7 +292734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001296" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001297", @@ -268045,7 +292759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001297" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001298", @@ -268068,7 +292784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001298" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001299", @@ -268091,7 +292809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001299" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001300", @@ -268114,7 +292834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001300" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001301", @@ -268137,7 +292859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001301" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001302", @@ -268160,7 +292884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001302" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001303", @@ -268183,7 +292909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001303" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001304", @@ -268206,7 +292934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001304" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001305", @@ -268229,7 +292959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001305" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001306", @@ -268252,7 +292984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001306" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001307", @@ -268275,7 +293009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001307" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001308", @@ -268298,7 +293034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001308" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001309", @@ -268321,7 +293059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001309" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001310", @@ -268344,7 +293084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001310" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001311", @@ -268367,7 +293109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001311" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001312", @@ -268390,7 +293134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001312" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001313", @@ -268413,7 +293159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001313" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001314", @@ -268436,7 +293184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001314" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001315", @@ -268459,7 +293209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001315" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001316", @@ -268482,7 +293234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001316" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001317", @@ -268505,7 +293259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001317" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001318", @@ -268528,7 +293284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001318" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001319", @@ -268551,7 +293309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001319" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001320", @@ -268574,7 +293334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001320" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001321", @@ -268597,7 +293359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001321" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001322", @@ -268620,7 +293384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001322" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001323", @@ -268643,7 +293409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001323" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001324", @@ -268666,7 +293434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001324" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001325", @@ -268689,7 +293459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001325" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001326", @@ -268712,7 +293484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001326" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001327", @@ -268735,7 +293509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001327" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001328", @@ -268758,7 +293534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001328" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001329", @@ -268781,7 +293559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001329" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001330", @@ -268804,7 +293584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001330" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001331", @@ -268827,7 +293609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001331" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001332", @@ -268850,7 +293634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001332" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001333", @@ -268873,7 +293659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001333" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001334", @@ -268896,7 +293684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001334" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001335", @@ -268919,7 +293709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001335" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001336", @@ -268942,7 +293734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001336" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001337", @@ -268965,7 +293759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001337" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001338", @@ -268988,7 +293784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001338" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001339", @@ -269011,7 +293809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001339" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001340", @@ -269034,7 +293834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001340" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001341", @@ -269057,7 +293859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001341" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001342", @@ -269080,7 +293884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001342" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001343", @@ -269103,7 +293909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001343" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001344", @@ -269126,7 +293934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001344" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001345", @@ -269149,7 +293959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001345" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001346", @@ -269172,7 +293984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001346" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001347", @@ -269195,7 +294009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001347" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001348", @@ -269218,7 +294034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001348" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001349", @@ -269241,7 +294059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001349" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001350", @@ -269264,7 +294084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001350" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001351", @@ -269287,7 +294109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001351" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001352", @@ -269310,7 +294134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001352" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001353", @@ -269333,7 +294159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001353" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001354", @@ -269356,7 +294184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001354" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001355", @@ -269379,7 +294209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001355" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001356", @@ -269402,7 +294234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001356" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001357", @@ -269425,7 +294259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001357" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001358", @@ -269448,7 +294284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001358" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001359", @@ -269471,7 +294309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001359" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001360", @@ -269494,7 +294334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001360" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001361", @@ -269517,7 +294359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001361" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001362", @@ -269540,7 +294384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001362" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001363", @@ -269563,7 +294409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001363" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001364", @@ -269586,7 +294434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001364" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001365", @@ -269609,7 +294459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001365" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001366", @@ -269632,7 +294484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001366" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001367", @@ -269655,7 +294509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001367" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001368", @@ -269678,7 +294534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001368" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001369", @@ -269701,7 +294559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001369" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001370", @@ -269724,7 +294584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001370" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001371", @@ -269747,7 +294609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001371" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001372", @@ -269770,7 +294634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001372" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001373", @@ -269793,7 +294659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001373" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001374", @@ -269816,7 +294684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001374" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001375", @@ -269839,7 +294709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001375" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001376", @@ -269862,7 +294734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001376" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001377", @@ -269885,7 +294759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001377" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001378", @@ -269908,7 +294784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001378" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001379", @@ -269931,7 +294809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001379" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001380", @@ -269954,7 +294834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001380" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001381", @@ -269977,7 +294859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001381" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001382", @@ -270000,7 +294884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001382" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001383", @@ -270023,7 +294909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001383" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001384", @@ -270046,7 +294934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001384" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001385", @@ -270069,7 +294959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001385" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001386", @@ -270092,7 +294984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001386" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001387", @@ -270115,7 +295009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001387" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001388", @@ -270138,7 +295034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001388" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001389", @@ -270161,7 +295059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001389" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001390", @@ -270184,7 +295084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001390" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001391", @@ -270207,7 +295109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001391" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001392", @@ -270230,7 +295134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001392" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001393", @@ -270253,7 +295159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001393" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001394", @@ -270276,7 +295184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001394" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001395", @@ -270299,7 +295209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001395" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001396", @@ -270322,7 +295234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001396" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001397", @@ -270345,7 +295259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001397" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001398", @@ -270368,7 +295284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001398" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001399", @@ -270391,7 +295309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001399" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001400", @@ -270414,7 +295334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001400" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001401", @@ -270437,7 +295359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001401" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001402", @@ -270460,7 +295384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001402" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001403", @@ -270483,7 +295409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001403" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001404", @@ -270506,7 +295434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001404" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001405", @@ -270529,7 +295459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001405" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001406", @@ -270552,7 +295484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001406" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001407", @@ -270575,7 +295509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001407" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001408", @@ -270598,7 +295534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001408" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001409", @@ -270621,7 +295559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001409" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001410", @@ -270644,7 +295584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001410" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001411", @@ -270667,7 +295609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001411" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001412", @@ -270690,7 +295634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001412" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001413", @@ -270713,7 +295659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001413" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001414", @@ -270736,7 +295684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001414" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001415", @@ -270759,7 +295709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001415" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001416", @@ -270782,7 +295734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001416" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001417", @@ -270805,7 +295759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001417" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001418", @@ -270828,7 +295784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001418" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001419", @@ -270851,7 +295809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001419" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001420", @@ -270874,7 +295834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001420" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001421", @@ -270897,7 +295859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001421" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001422", @@ -270920,7 +295884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001422" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001423", @@ -270943,7 +295909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001423" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001424", @@ -270966,7 +295934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001424" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001425", @@ -270989,7 +295959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001425" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001426", @@ -271012,7 +295984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001426" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001427", @@ -271035,7 +296009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001427" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001428", @@ -271058,7 +296034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001428" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001429", @@ -271081,7 +296059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001429" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001430", @@ -271104,7 +296084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001430" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001431", @@ -271127,7 +296109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001431" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001432", @@ -271150,7 +296134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001432" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001433", @@ -271173,7 +296159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001433" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001434", @@ -271196,7 +296184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001434" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001435", @@ -271219,7 +296209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001435" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001436", @@ -271242,7 +296234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001436" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001437", @@ -271265,7 +296259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001437" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001438", @@ -271288,7 +296284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001438" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001439", @@ -271311,7 +296309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001439" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001440", @@ -271334,7 +296334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001440" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001441", @@ -271357,7 +296359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001441" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001442", @@ -271380,7 +296384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001442" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001443", @@ -271403,7 +296409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001443" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001444", @@ -271426,7 +296434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001444" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001445", @@ -271449,7 +296459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001445" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001446", @@ -271472,7 +296484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001446" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001447", @@ -271495,7 +296509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001447" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001448", @@ -271518,7 +296534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001448" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001449", @@ -271541,7 +296559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001449" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001450", @@ -271564,7 +296584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001450" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001451", @@ -271587,7 +296609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001451" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001452", @@ -271610,7 +296634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001452" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001453", @@ -271633,7 +296659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001453" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001454", @@ -271656,7 +296684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001454" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001455", @@ -271679,7 +296709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001455" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001456", @@ -271702,7 +296734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001456" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001457", @@ -271725,7 +296759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001457" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001458", @@ -271748,7 +296784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001458" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001459", @@ -271771,7 +296809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001459" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001460", @@ -271794,7 +296834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001460" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001461", @@ -271817,7 +296859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001461" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001462", @@ -271840,7 +296884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001462" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001463", @@ -271863,7 +296909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001463" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001464", @@ -271886,7 +296934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001464" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001465", @@ -271909,7 +296959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001465" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001466", @@ -271932,7 +296984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001466" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001467", @@ -271955,7 +297009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001467" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001468", @@ -271978,7 +297034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001468" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001469", @@ -272001,7 +297059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001469" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001470", @@ -272024,7 +297084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001470" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001471", @@ -272047,7 +297109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001471" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001472", @@ -272070,7 +297134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001472" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001473", @@ -272093,7 +297159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001473" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001474", @@ -272116,7 +297184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001474" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001475", @@ -272139,7 +297209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001475" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001476", @@ -272162,7 +297234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001476" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001477", @@ -272185,7 +297259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001477" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001478", @@ -272208,7 +297284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001478" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001479", @@ -272231,7 +297309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001479" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001480", @@ -272254,7 +297334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001480" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001481", @@ -272277,7 +297359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001481" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001482", @@ -272300,7 +297384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001482" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001483", @@ -272323,7 +297409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001483" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001484", @@ -272346,7 +297434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001484" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001485", @@ -272369,7 +297459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001485" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001486", @@ -272392,7 +297484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001486" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001487", @@ -272415,7 +297509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001487" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001488", @@ -272438,7 +297534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001488" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001489", @@ -272461,7 +297559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001489" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001490", @@ -272484,7 +297584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001490" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001491", @@ -272507,7 +297609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001491" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001492", @@ -272530,7 +297634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001492" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001493", @@ -272553,7 +297659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001493" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001494", @@ -272576,7 +297684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001494" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001495", @@ -272599,7 +297709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001495" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001496", @@ -272622,7 +297734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001496" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001497", @@ -272645,7 +297759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001497" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001498", @@ -272668,7 +297784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001498" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001499", @@ -272691,7 +297809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001499" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001500", @@ -272714,7 +297834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001500" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001501", @@ -272737,7 +297859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001501" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001502", @@ -272760,7 +297884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001502" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001503", @@ -272783,7 +297909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001503" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001504", @@ -272806,7 +297934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001504" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001505", @@ -272829,7 +297959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001505" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001506", @@ -272852,7 +297984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001506" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001507", @@ -272875,7 +298009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001507" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001508", @@ -272898,7 +298034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001508" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001509", @@ -272921,7 +298059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001509" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001510", @@ -272944,7 +298084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001510" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001511", @@ -272967,7 +298109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001511" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001512", @@ -272990,7 +298134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001512" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001513", @@ -273013,7 +298159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001513" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001514", @@ -273036,7 +298184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001514" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001515", @@ -273059,7 +298209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001515" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001516", @@ -273082,7 +298234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001516" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001517", @@ -273105,7 +298259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001517" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001518", @@ -273128,7 +298284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001518" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001519", @@ -273151,7 +298309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001519" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001520", @@ -273174,7 +298334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001520" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001521", @@ -273197,7 +298359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001521" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001522", @@ -273220,7 +298384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001522" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001523", @@ -273243,7 +298409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001523" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001524", @@ -273266,7 +298434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001524" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001525", @@ -273289,7 +298459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001525" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001526", @@ -273312,7 +298484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001526" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001527", @@ -273335,7 +298509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001527" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001528", @@ -273358,7 +298534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001528" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001529", @@ -273381,7 +298559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001529" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001530", @@ -273404,7 +298584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001530" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001531", @@ -273427,7 +298609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001531" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001532", @@ -273450,7 +298634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001532" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001533", @@ -273473,7 +298659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001533" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001534", @@ -273496,7 +298684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001534" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001535", @@ -273519,7 +298709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001535" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001536", @@ -273542,7 +298734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001536" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001537", @@ -273565,7 +298759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001537" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001538", @@ -273588,7 +298784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001538" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001539", @@ -273611,7 +298809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001539" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001540", @@ -273634,7 +298834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001540" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001541", @@ -273657,7 +298859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001541" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001542", @@ -273680,7 +298884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001542" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001543", @@ -273703,7 +298909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001543" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001544", @@ -273726,7 +298934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001544" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001545", @@ -273749,7 +298959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001545" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001546", @@ -273772,7 +298984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001546" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001547", @@ -273795,7 +299009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001547" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001548", @@ -273818,7 +299034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001548" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001549", @@ -273841,7 +299059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001549" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001550", @@ -273864,7 +299084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001550" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001551", @@ -273887,7 +299109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001551" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001552", @@ -273910,7 +299134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001552" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001553", @@ -273933,7 +299159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001553" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001554", @@ -273956,7 +299184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001554" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001555", @@ -273979,7 +299209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001555" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001556", @@ -274002,7 +299234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001556" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001557", @@ -274025,7 +299259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001557" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001558", @@ -274048,7 +299284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001558" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001559", @@ -274071,7 +299309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001559" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001560", @@ -274094,7 +299334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001560" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001561", @@ -274117,7 +299359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001561" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001562", @@ -274140,7 +299384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001562" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001563", @@ -274163,7 +299409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001563" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001564", @@ -274186,7 +299434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001564" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001565", @@ -274209,7 +299459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001565" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001566", @@ -274232,7 +299484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001566" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001567", @@ -274255,7 +299509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001567" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001568", @@ -274278,7 +299534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001568" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001569", @@ -274301,7 +299559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001569" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001570", @@ -274324,7 +299584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001570" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001571", @@ -274347,7 +299609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001571" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001572", @@ -274370,7 +299634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001572" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001573", @@ -274393,7 +299659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001573" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001574", @@ -274416,7 +299684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001574" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001575", @@ -274439,7 +299709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001575" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001576", @@ -274462,7 +299734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001576" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001577", @@ -274485,7 +299759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001577" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001578", @@ -274508,7 +299784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001578" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001579", @@ -274531,7 +299809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001579" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001580", @@ -274554,7 +299834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001580" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001581", @@ -274577,7 +299859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001581" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001582", @@ -274600,7 +299884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001582" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001583", @@ -274623,7 +299909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001583" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001584", @@ -274646,7 +299934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001584" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001585", @@ -274669,7 +299959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001585" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001586", @@ -274692,7 +299984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001586" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001587", @@ -274715,7 +300009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001587" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001588", @@ -274738,7 +300034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001588" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001589", @@ -274761,7 +300059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001589" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001590", @@ -274784,7 +300084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001590" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001591", @@ -274807,7 +300109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001591" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001592", @@ -274830,7 +300134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001592" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001593", @@ -274853,7 +300159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001593" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001594", @@ -274876,7 +300184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001594" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001595", @@ -274899,7 +300209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001595" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001596", @@ -274922,7 +300234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001596" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001597", @@ -274945,7 +300259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001597" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001598", @@ -274968,7 +300284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001598" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001599", @@ -274991,7 +300309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001599" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001600", @@ -275014,7 +300334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001600" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001601", @@ -275037,7 +300359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001601" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001602", @@ -275060,7 +300384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001602" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001603", @@ -275083,7 +300409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001603" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001604", @@ -275106,7 +300434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001604" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E14001605", @@ -275129,7 +300459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001605" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000021", @@ -275152,7 +300484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000021" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000027", @@ -275175,7 +300509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000027" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000045", @@ -275198,7 +300534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000045" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000048", @@ -275221,7 +300559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000048" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000051", @@ -275244,7 +300584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000051" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000060", @@ -275267,7 +300609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000060" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000061", @@ -275290,7 +300634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000061" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000062", @@ -275313,7 +300659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000062" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000063", @@ -275336,7 +300684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000063" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000064", @@ -275359,7 +300709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000064" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000065", @@ -275382,7 +300734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000065" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000066", @@ -275405,7 +300759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000066" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000067", @@ -275428,7 +300784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000067" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000068", @@ -275451,7 +300809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000068" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000069", @@ -275474,7 +300834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000069" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000070", @@ -275497,7 +300859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000070" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000071", @@ -275520,7 +300884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000071" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000072", @@ -275543,7 +300909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000072" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000073", @@ -275566,7 +300934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000073" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000074", @@ -275589,7 +300959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000074" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000075", @@ -275612,7 +300984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000075" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000076", @@ -275635,7 +301009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000076" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000077", @@ -275658,7 +301034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000077" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000078", @@ -275681,7 +301059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000078" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000079", @@ -275704,7 +301084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000079" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000080", @@ -275727,7 +301109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000080" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000081", @@ -275750,7 +301134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000082", @@ -275773,7 +301159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000083", @@ -275796,7 +301184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000084", @@ -275819,7 +301209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000085", @@ -275842,7 +301234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000086", @@ -275865,7 +301259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000087", @@ -275888,7 +301284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000088", @@ -275911,7 +301309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000089", @@ -275934,7 +301334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000090", @@ -275957,7 +301359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000091", @@ -275980,7 +301384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000092", @@ -276003,7 +301409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000093", @@ -276026,7 +301434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000094", @@ -276049,7 +301459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000095", @@ -276072,7 +301484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000096", @@ -276095,7 +301509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000097", @@ -276118,7 +301534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000098", @@ -276141,7 +301559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000099", @@ -276164,7 +301584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000100", @@ -276187,7 +301609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000101", @@ -276210,7 +301634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000102", @@ -276233,7 +301659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000103", @@ -276256,7 +301684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000104", @@ -276279,7 +301709,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000105", @@ -276302,7 +301734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000106", @@ -276325,7 +301759,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000107", @@ -276348,7 +301784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000108", @@ -276371,7 +301809,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000109", @@ -276394,7 +301834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000110", @@ -276417,7 +301859,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S14000111", @@ -276440,7 +301884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000081", @@ -276463,7 +301909,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000082", @@ -276486,7 +301934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000083", @@ -276509,7 +301959,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000084", @@ -276532,7 +301984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000085", @@ -276555,7 +302009,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000086", @@ -276578,7 +302034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000087", @@ -276601,7 +302059,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000088", @@ -276624,7 +302084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000089", @@ -276647,7 +302109,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000090", @@ -276670,7 +302134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000091", @@ -276693,7 +302159,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000092", @@ -276716,7 +302184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000093", @@ -276739,7 +302209,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000094", @@ -276762,7 +302234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000095", @@ -276785,7 +302259,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000096", @@ -276808,7 +302284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000097", @@ -276831,7 +302309,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000098", @@ -276854,7 +302334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000099", @@ -276877,7 +302359,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000100", @@ -276900,7 +302384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000101", @@ -276923,7 +302409,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000102", @@ -276946,7 +302434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000103", @@ -276969,7 +302459,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000104", @@ -276992,7 +302484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000105", @@ -277015,7 +302509,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000106", @@ -277038,7 +302534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000107", @@ -277061,7 +302559,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000108", @@ -277084,7 +302584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000109", @@ -277107,7 +302609,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000110", @@ -277130,7 +302634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000111", @@ -277153,7 +302659,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W07000112", @@ -277176,7 +302684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000112" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000001", @@ -277199,7 +302709,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000001" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000002", @@ -277222,7 +302734,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000002" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000003", @@ -277245,7 +302759,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000003" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000004", @@ -277268,7 +302784,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000004" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000005", @@ -277291,7 +302809,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000005" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000006", @@ -277314,7 +302834,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000006" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000007", @@ -277337,7 +302859,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000007" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000008", @@ -277360,7 +302884,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000008" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000009", @@ -277383,7 +302909,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000009" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000010", @@ -277406,7 +302934,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000010" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000011", @@ -277429,7 +302959,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000011" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000012", @@ -277452,7 +302984,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000012" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000013", @@ -277475,7 +303009,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000013" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000014", @@ -277498,7 +303034,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000014" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000015", @@ -277521,7 +303059,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000015" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000016", @@ -277544,7 +303084,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000016" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000017", @@ -277567,7 +303109,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000017" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000018", @@ -277590,7 +303134,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000018" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000019", @@ -277613,7 +303159,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000019" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000020", @@ -277636,7 +303184,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000020" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000021", @@ -277659,7 +303209,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000021" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000022", @@ -277682,7 +303234,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000022" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000023", @@ -277705,7 +303259,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000023" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000024", @@ -277728,7 +303284,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000024" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000025", @@ -277751,7 +303309,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000025" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000026", @@ -277774,7 +303334,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000026" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000027", @@ -277797,7 +303359,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000027" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000030", @@ -277820,7 +303384,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000030" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000031", @@ -277843,7 +303409,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000031" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000032", @@ -277866,7 +303434,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000032" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000033", @@ -277889,7 +303459,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000033" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000034", @@ -277912,7 +303484,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000034" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000035", @@ -277935,7 +303509,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000035" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000036", @@ -277958,7 +303534,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000036" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000037", @@ -277981,7 +303559,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000037" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000038", @@ -278004,7 +303584,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000038" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000039", @@ -278027,7 +303609,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000039" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000040", @@ -278050,7 +303634,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000040" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000041", @@ -278073,7 +303659,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000041" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000042", @@ -278096,7 +303684,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000042" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000043", @@ -278119,7 +303709,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000043" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000044", @@ -278142,7 +303734,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000044" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000045", @@ -278165,7 +303759,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000045" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000046", @@ -278188,7 +303784,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000046" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000047", @@ -278211,7 +303809,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000047" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000049", @@ -278234,7 +303834,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000049" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000050", @@ -278257,7 +303859,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000050" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000051", @@ -278280,7 +303884,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000051" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000052", @@ -278303,7 +303909,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000052" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000053", @@ -278326,7 +303934,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000053" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000054", @@ -278349,7 +303959,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000054" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000055", @@ -278372,7 +303984,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000055" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000056", @@ -278395,7 +304009,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000056" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000057", @@ -278418,7 +304034,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000057" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000058", @@ -278441,7 +304059,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000058" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000059", @@ -278464,7 +304084,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000059" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000060", @@ -278487,7 +304109,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000060" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000061", @@ -278510,7 +304134,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000061" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000062", @@ -278533,7 +304159,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000062" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000063", @@ -278556,7 +304184,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000063" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000064", @@ -278579,7 +304209,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000064" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000065", @@ -278602,7 +304234,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000065" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E06000066", @@ -278625,7 +304259,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000066" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000008", @@ -278648,7 +304284,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000008" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000009", @@ -278671,7 +304309,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000009" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000010", @@ -278694,7 +304334,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000010" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000011", @@ -278717,7 +304359,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000011" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000012", @@ -278740,7 +304384,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000012" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000032", @@ -278763,7 +304409,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000032" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000033", @@ -278786,7 +304434,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000033" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000034", @@ -278809,7 +304459,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000034" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000035", @@ -278832,7 +304484,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000035" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000036", @@ -278855,7 +304509,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000036" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000037", @@ -278878,7 +304534,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000037" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000038", @@ -278901,7 +304559,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000038" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000039", @@ -278924,7 +304584,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000039" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000040", @@ -278947,7 +304609,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000040" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000041", @@ -278970,7 +304634,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000041" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000042", @@ -278993,7 +304659,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000042" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000043", @@ -279016,7 +304684,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000043" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000044", @@ -279039,7 +304709,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000044" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000045", @@ -279062,7 +304734,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000045" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000046", @@ -279085,7 +304759,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000046" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000047", @@ -279108,7 +304784,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000047" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000061", @@ -279131,7 +304809,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000061" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000062", @@ -279154,7 +304834,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000062" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000063", @@ -279177,7 +304859,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000063" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000064", @@ -279200,7 +304884,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000064" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000065", @@ -279223,7 +304909,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000065" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000066", @@ -279246,7 +304934,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000066" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000067", @@ -279269,7 +304959,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000067" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000068", @@ -279292,7 +304984,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000068" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000069", @@ -279315,7 +305009,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000069" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000070", @@ -279338,7 +305034,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000070" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000071", @@ -279361,7 +305059,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000071" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000072", @@ -279384,7 +305084,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000072" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000073", @@ -279407,7 +305109,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000073" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000074", @@ -279430,7 +305134,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000074" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000075", @@ -279453,7 +305159,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000075" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000076", @@ -279476,7 +305184,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000076" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000077", @@ -279499,7 +305209,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000077" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000078", @@ -279522,7 +305234,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000078" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000079", @@ -279545,7 +305259,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000079" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000080", @@ -279568,7 +305284,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000080" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000081", @@ -279591,7 +305309,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000082", @@ -279614,7 +305334,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000083", @@ -279637,7 +305359,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000084", @@ -279660,7 +305384,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000085", @@ -279683,7 +305409,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000086", @@ -279706,7 +305434,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000087", @@ -279729,7 +305459,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000088", @@ -279752,7 +305484,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000089", @@ -279775,7 +305509,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000090", @@ -279798,7 +305534,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000091", @@ -279821,7 +305559,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000092", @@ -279844,7 +305584,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000093", @@ -279867,7 +305609,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000094", @@ -279890,7 +305634,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000095", @@ -279913,7 +305659,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000096", @@ -279936,7 +305684,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000098", @@ -279959,7 +305709,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000099", @@ -279982,7 +305734,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000102", @@ -280005,7 +305759,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000103", @@ -280028,7 +305784,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000105", @@ -280051,7 +305809,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000106", @@ -280074,7 +305834,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000107", @@ -280097,7 +305859,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000108", @@ -280120,7 +305884,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000109", @@ -280143,7 +305909,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000110", @@ -280166,7 +305934,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000111", @@ -280189,7 +305959,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000112", @@ -280212,7 +305984,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000112" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000113", @@ -280235,7 +306009,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000113" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000114", @@ -280258,7 +306034,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000114" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000115", @@ -280281,7 +306059,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000115" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000116", @@ -280304,7 +306084,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000116" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000117", @@ -280327,7 +306109,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000117" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000118", @@ -280350,7 +306134,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000118" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000119", @@ -280373,7 +306159,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000119" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000120", @@ -280396,7 +306184,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000120" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000121", @@ -280419,7 +306209,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000121" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000122", @@ -280442,7 +306234,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000122" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000123", @@ -280465,7 +306259,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000123" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000124", @@ -280488,7 +306284,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000124" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000125", @@ -280511,7 +306309,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000125" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000126", @@ -280534,7 +306334,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000126" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000127", @@ -280557,7 +306359,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000127" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000128", @@ -280580,7 +306384,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000128" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000129", @@ -280603,7 +306409,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000129" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000130", @@ -280626,7 +306434,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000130" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000131", @@ -280649,7 +306459,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000131" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000132", @@ -280672,7 +306484,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000132" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000133", @@ -280695,7 +306509,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000133" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000134", @@ -280718,7 +306534,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000134" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000135", @@ -280741,7 +306559,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000135" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000136", @@ -280764,7 +306584,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000136" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000137", @@ -280787,7 +306609,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000137" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000138", @@ -280810,7 +306634,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000138" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000139", @@ -280833,7 +306659,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000139" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000140", @@ -280856,7 +306684,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000140" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000141", @@ -280879,7 +306709,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000141" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000142", @@ -280902,7 +306734,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000142" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000143", @@ -280925,7 +306759,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000143" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000144", @@ -280948,7 +306784,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000144" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000145", @@ -280971,7 +306809,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000145" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000146", @@ -280994,7 +306834,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000146" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000147", @@ -281017,7 +306859,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000147" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000148", @@ -281040,7 +306884,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000148" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000149", @@ -281063,7 +306909,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000149" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000170", @@ -281086,7 +306934,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000170" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000171", @@ -281109,7 +306959,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000171" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000172", @@ -281132,7 +306984,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000172" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000173", @@ -281155,7 +307009,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000173" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000174", @@ -281178,7 +307034,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000174" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000175", @@ -281201,7 +307059,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000175" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000176", @@ -281224,7 +307084,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000176" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000177", @@ -281247,7 +307109,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000177" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000178", @@ -281270,7 +307134,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000178" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000179", @@ -281293,7 +307159,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000179" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000180", @@ -281316,7 +307184,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000180" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000181", @@ -281339,7 +307209,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000181" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000192", @@ -281362,7 +307234,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000192" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000193", @@ -281385,7 +307259,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000193" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000194", @@ -281408,7 +307284,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000194" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000195", @@ -281431,7 +307309,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000195" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000196", @@ -281454,7 +307334,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000196" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000197", @@ -281477,7 +307359,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000197" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000198", @@ -281500,7 +307384,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000198" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000199", @@ -281523,7 +307409,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000199" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000200", @@ -281546,7 +307434,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000200" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000202", @@ -281569,7 +307459,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000202" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000203", @@ -281592,7 +307484,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000203" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000207", @@ -281615,7 +307509,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000207" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000208", @@ -281638,7 +307534,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000208" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000209", @@ -281661,7 +307559,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000209" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000210", @@ -281684,7 +307584,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000210" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000211", @@ -281707,7 +307609,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000211" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000212", @@ -281730,7 +307634,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000212" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000213", @@ -281753,7 +307659,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000213" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000214", @@ -281776,7 +307684,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000214" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000215", @@ -281799,7 +307709,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000215" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000216", @@ -281822,7 +307734,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000216" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000217", @@ -281845,7 +307759,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000217" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000218", @@ -281868,7 +307784,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000218" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000219", @@ -281891,7 +307809,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000219" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000220", @@ -281914,7 +307834,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000220" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000221", @@ -281937,7 +307859,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000221" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000222", @@ -281960,7 +307884,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000222" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000223", @@ -281983,7 +307909,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000223" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000224", @@ -282006,7 +307934,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000224" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000225", @@ -282029,7 +307959,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000225" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000226", @@ -282052,7 +307984,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000226" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000227", @@ -282075,7 +308009,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000227" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000228", @@ -282098,7 +308034,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000228" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000229", @@ -282121,7 +308059,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000229" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000234", @@ -282144,7 +308084,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000234" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000235", @@ -282167,7 +308109,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000235" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000236", @@ -282190,7 +308134,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000236" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000237", @@ -282213,7 +308159,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000237" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000238", @@ -282236,7 +308184,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000238" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000239", @@ -282259,7 +308209,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000239" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000240", @@ -282282,7 +308234,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000240" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000241", @@ -282305,7 +308259,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000241" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000242", @@ -282328,7 +308284,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000242" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000243", @@ -282351,7 +308309,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000243" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000244", @@ -282374,7 +308334,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000244" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E07000245", @@ -282397,7 +308359,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000245" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000001", @@ -282420,7 +308384,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000001" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000002", @@ -282443,7 +308409,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000002" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000003", @@ -282466,7 +308434,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000003" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000004", @@ -282489,7 +308459,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000004" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000005", @@ -282512,7 +308484,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000005" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000006", @@ -282535,7 +308509,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000006" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000007", @@ -282558,7 +308534,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000007" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000008", @@ -282581,7 +308559,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000008" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000009", @@ -282604,7 +308584,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000009" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000010", @@ -282627,7 +308609,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000010" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000011", @@ -282650,7 +308634,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000011" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000012", @@ -282673,7 +308659,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000012" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000013", @@ -282696,7 +308684,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000013" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000014", @@ -282719,7 +308709,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000014" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000015", @@ -282742,7 +308734,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000015" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000016", @@ -282765,7 +308759,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000016" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000017", @@ -282788,7 +308784,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000017" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000018", @@ -282811,7 +308809,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000018" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000019", @@ -282834,7 +308834,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000019" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000021", @@ -282857,7 +308859,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000021" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000022", @@ -282880,7 +308884,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000022" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000023", @@ -282903,7 +308909,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000023" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000024", @@ -282926,7 +308934,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000024" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000025", @@ -282949,7 +308959,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000025" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000026", @@ -282972,7 +308984,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000026" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000027", @@ -282995,7 +309009,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000027" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000028", @@ -283018,7 +309034,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000028" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000029", @@ -283041,7 +309059,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000029" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000030", @@ -283064,7 +309084,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000030" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000031", @@ -283087,7 +309109,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000031" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000032", @@ -283110,7 +309134,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000032" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000033", @@ -283133,7 +309159,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000033" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000034", @@ -283156,7 +309184,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000034" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000035", @@ -283179,7 +309209,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000035" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000036", @@ -283202,7 +309234,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000036" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E08000037", @@ -283225,7 +309259,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000037" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000001", @@ -283248,7 +309284,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000001" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000002", @@ -283271,7 +309309,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000002" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000003", @@ -283294,7 +309334,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000003" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000004", @@ -283317,7 +309359,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000004" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000005", @@ -283340,7 +309384,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000005" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000006", @@ -283363,7 +309409,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000006" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000007", @@ -283386,7 +309434,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000007" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000008", @@ -283409,7 +309459,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000008" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000009", @@ -283432,7 +309484,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000009" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000010", @@ -283455,7 +309509,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000010" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000011", @@ -283478,7 +309534,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000011" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000012", @@ -283501,7 +309559,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000012" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000013", @@ -283524,7 +309584,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000013" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000014", @@ -283547,7 +309609,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000014" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000015", @@ -283570,7 +309634,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000015" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000016", @@ -283593,7 +309659,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000016" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000017", @@ -283616,7 +309684,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000017" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000018", @@ -283639,7 +309709,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000018" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000019", @@ -283662,7 +309734,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000019" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000020", @@ -283685,7 +309759,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000020" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000021", @@ -283708,7 +309784,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000021" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000022", @@ -283731,7 +309809,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000022" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000023", @@ -283754,7 +309834,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000023" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000024", @@ -283777,7 +309859,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000024" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000025", @@ -283800,7 +309884,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000025" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000026", @@ -283823,7 +309909,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000026" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000027", @@ -283846,7 +309934,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000027" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000028", @@ -283869,7 +309959,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000028" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000029", @@ -283892,7 +309984,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000029" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000030", @@ -283915,7 +310009,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000030" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000031", @@ -283938,7 +310034,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000031" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000032", @@ -283961,7 +310059,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000032" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@E09000033", @@ -283984,7 +310084,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000033" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000005", @@ -284007,7 +310109,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000005" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000006", @@ -284030,7 +310134,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000006" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000008", @@ -284053,7 +310159,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000008" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000010", @@ -284076,7 +310184,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000010" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000011", @@ -284099,7 +310209,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000011" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000013", @@ -284122,7 +310234,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000013" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000014", @@ -284145,7 +310259,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000014" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000017", @@ -284168,7 +310284,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000017" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000018", @@ -284191,7 +310309,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000018" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000019", @@ -284214,7 +310334,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000019" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000020", @@ -284237,7 +310359,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000020" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000021", @@ -284260,7 +310384,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000021" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000023", @@ -284283,7 +310409,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000023" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000026", @@ -284306,7 +310434,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000026" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000027", @@ -284329,7 +310459,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000027" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000028", @@ -284352,7 +310484,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000028" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000029", @@ -284375,7 +310509,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000029" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000030", @@ -284398,7 +310534,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000030" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000033", @@ -284421,7 +310559,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000033" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000034", @@ -284444,7 +310584,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000034" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000035", @@ -284467,7 +310609,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000035" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000036", @@ -284490,7 +310634,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000036" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000038", @@ -284513,7 +310659,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000038" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000039", @@ -284536,7 +310684,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000039" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000040", @@ -284559,7 +310709,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000040" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000041", @@ -284582,7 +310734,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000041" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000042", @@ -284605,7 +310759,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000042" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000045", @@ -284628,7 +310784,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000045" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000047", @@ -284651,7 +310809,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000047" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000048", @@ -284674,7 +310834,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000048" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000049", @@ -284697,7 +310859,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000049" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@S12000050", @@ -284720,7 +310884,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000050" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000001", @@ -284743,7 +310909,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000001" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000002", @@ -284766,7 +310934,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000002" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000003", @@ -284789,7 +310959,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000003" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000004", @@ -284812,7 +310984,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000004" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000005", @@ -284835,7 +311009,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000005" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000006", @@ -284858,7 +311034,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000006" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000008", @@ -284881,7 +311059,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000008" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000009", @@ -284904,7 +311084,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000009" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000010", @@ -284927,7 +311109,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000010" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000011", @@ -284950,7 +311134,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000011" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000012", @@ -284973,7 +311159,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000012" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000013", @@ -284996,7 +311184,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000013" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000014", @@ -285019,7 +311209,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000014" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000015", @@ -285042,7 +311234,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000015" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000016", @@ -285065,7 +311259,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000016" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000018", @@ -285088,7 +311284,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000018" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000019", @@ -285111,7 +311309,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000019" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000020", @@ -285134,7 +311334,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000020" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000021", @@ -285157,7 +311359,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000021" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000022", @@ -285180,7 +311384,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000022" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000023", @@ -285203,7 +311409,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000023" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area@W06000024", @@ -285226,7 +311434,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000024" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001063", @@ -285246,7 +311456,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001063" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001064", @@ -285266,7 +311478,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001064" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001065", @@ -285286,7 +311500,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001065" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001066", @@ -285306,7 +311522,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001066" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001067", @@ -285326,7 +311544,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001067" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001068", @@ -285346,7 +311566,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001068" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001069", @@ -285366,7 +311588,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001069" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001070", @@ -285386,7 +311610,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001070" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001071", @@ -285406,7 +311632,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001071" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001072", @@ -285426,7 +311654,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001072" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001073", @@ -285446,7 +311676,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001073" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001074", @@ -285466,7 +311698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001074" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001075", @@ -285486,7 +311720,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001075" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001076", @@ -285506,7 +311742,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001076" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001077", @@ -285526,7 +311764,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001077" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001078", @@ -285546,7 +311786,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001078" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001079", @@ -285566,7 +311808,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001079" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001080", @@ -285586,7 +311830,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001080" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001081", @@ -285606,7 +311852,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001082", @@ -285626,7 +311874,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001083", @@ -285646,7 +311896,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001084", @@ -285666,7 +311918,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001085", @@ -285686,7 +311940,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001086", @@ -285706,7 +311962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001087", @@ -285726,7 +311984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001088", @@ -285746,7 +312006,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001089", @@ -285766,7 +312028,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001090", @@ -285786,7 +312050,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001091", @@ -285806,7 +312072,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001092", @@ -285826,7 +312094,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001093", @@ -285846,7 +312116,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001094", @@ -285866,7 +312138,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001095", @@ -285886,7 +312160,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001096", @@ -285906,7 +312182,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001097", @@ -285926,7 +312204,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001098", @@ -285946,7 +312226,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001099", @@ -285966,7 +312248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001100", @@ -285986,7 +312270,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001101", @@ -286006,7 +312292,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001102", @@ -286026,7 +312314,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001103", @@ -286046,7 +312336,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001104", @@ -286066,7 +312358,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001105", @@ -286086,7 +312380,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001106", @@ -286106,7 +312402,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001107", @@ -286126,7 +312424,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001108", @@ -286146,7 +312446,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001109", @@ -286166,7 +312468,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001110", @@ -286186,7 +312490,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001111", @@ -286206,7 +312512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001112", @@ -286226,7 +312534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001112" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001113", @@ -286246,7 +312556,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001113" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001114", @@ -286266,7 +312578,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001114" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001115", @@ -286286,7 +312600,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001115" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001116", @@ -286306,7 +312622,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001116" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001117", @@ -286326,7 +312644,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001117" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001118", @@ -286346,7 +312666,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001118" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001119", @@ -286366,7 +312688,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001119" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001120", @@ -286386,7 +312710,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001120" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001121", @@ -286406,7 +312732,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001121" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001122", @@ -286426,7 +312754,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001122" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001123", @@ -286446,7 +312776,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001123" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001124", @@ -286466,7 +312798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001124" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001125", @@ -286486,7 +312820,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001125" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001126", @@ -286506,7 +312842,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001126" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001127", @@ -286526,7 +312864,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001127" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001128", @@ -286546,7 +312886,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001128" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001129", @@ -286566,7 +312908,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001129" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001130", @@ -286586,7 +312930,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001130" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001131", @@ -286606,7 +312952,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001131" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001132", @@ -286626,7 +312974,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001132" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001133", @@ -286646,7 +312996,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001133" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001134", @@ -286666,7 +313018,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001134" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001135", @@ -286686,7 +313040,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001135" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001136", @@ -286706,7 +313062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001136" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001137", @@ -286726,7 +313084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001137" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001138", @@ -286746,7 +313106,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001138" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001139", @@ -286766,7 +313128,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001139" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001140", @@ -286786,7 +313150,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001140" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001141", @@ -286806,7 +313172,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001141" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001142", @@ -286826,7 +313194,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001142" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001143", @@ -286846,7 +313216,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001143" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001144", @@ -286866,7 +313238,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001144" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001145", @@ -286886,7 +313260,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001145" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001146", @@ -286906,7 +313282,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001146" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001147", @@ -286926,7 +313304,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001147" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001148", @@ -286946,7 +313326,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001148" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001149", @@ -286966,7 +313348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001149" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001150", @@ -286986,7 +313370,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001150" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001151", @@ -287006,7 +313392,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001151" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001152", @@ -287026,7 +313414,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001152" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001153", @@ -287046,7 +313436,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001153" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001154", @@ -287066,7 +313458,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001154" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001155", @@ -287086,7 +313480,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001155" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001156", @@ -287106,7 +313502,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001156" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001157", @@ -287126,7 +313524,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001157" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001158", @@ -287146,7 +313546,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001158" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001159", @@ -287166,7 +313568,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001159" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001160", @@ -287186,7 +313590,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001160" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001161", @@ -287206,7 +313612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001161" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001162", @@ -287226,7 +313634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001162" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001163", @@ -287246,7 +313656,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001163" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001164", @@ -287266,7 +313678,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001164" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001165", @@ -287286,7 +313700,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001165" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001166", @@ -287306,7 +313722,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001166" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001167", @@ -287326,7 +313744,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001167" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001168", @@ -287346,7 +313766,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001168" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001169", @@ -287366,7 +313788,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001169" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001170", @@ -287386,7 +313810,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001170" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001171", @@ -287406,7 +313832,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001171" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001172", @@ -287426,7 +313854,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001172" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001173", @@ -287446,7 +313876,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001173" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001174", @@ -287466,7 +313898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001174" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001175", @@ -287486,7 +313920,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001175" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001176", @@ -287506,7 +313942,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001176" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001177", @@ -287526,7 +313964,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001177" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001178", @@ -287546,7 +313986,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001178" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001179", @@ -287566,7 +314008,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001179" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001180", @@ -287586,7 +314030,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001180" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001181", @@ -287606,7 +314052,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001181" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001182", @@ -287626,7 +314074,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001182" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001183", @@ -287646,7 +314096,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001183" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001184", @@ -287666,7 +314118,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001184" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001185", @@ -287686,7 +314140,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001185" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001186", @@ -287706,7 +314162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001186" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001187", @@ -287726,7 +314184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001187" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001188", @@ -287746,7 +314206,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001188" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001189", @@ -287766,7 +314228,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001189" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001190", @@ -287786,7 +314250,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001190" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001191", @@ -287806,7 +314272,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001191" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001192", @@ -287826,7 +314294,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001192" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001193", @@ -287846,7 +314316,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001193" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001194", @@ -287866,7 +314338,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001194" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001195", @@ -287886,7 +314360,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001195" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001196", @@ -287906,7 +314382,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001196" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001197", @@ -287926,7 +314404,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001197" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001198", @@ -287946,7 +314426,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001198" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001199", @@ -287966,7 +314448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001199" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001200", @@ -287986,7 +314470,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001200" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001201", @@ -288006,7 +314492,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001201" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001202", @@ -288026,7 +314514,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001202" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001203", @@ -288046,7 +314536,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001203" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001204", @@ -288066,7 +314558,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001204" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001205", @@ -288086,7 +314580,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001205" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001206", @@ -288106,7 +314602,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001206" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001207", @@ -288126,7 +314624,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001207" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001208", @@ -288146,7 +314646,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001208" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001209", @@ -288166,7 +314668,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001209" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001210", @@ -288186,7 +314690,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001210" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001211", @@ -288206,7 +314712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001211" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001212", @@ -288226,7 +314734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001212" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001213", @@ -288246,7 +314756,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001213" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001214", @@ -288266,7 +314778,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001214" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001215", @@ -288286,7 +314800,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001215" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001216", @@ -288306,7 +314822,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001216" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001217", @@ -288326,7 +314844,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001217" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001218", @@ -288346,7 +314866,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001218" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001219", @@ -288366,7 +314888,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001219" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001220", @@ -288386,7 +314910,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001220" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001221", @@ -288406,7 +314932,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001221" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001222", @@ -288426,7 +314954,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001222" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001223", @@ -288446,7 +314976,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001223" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001224", @@ -288466,7 +314998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001224" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001225", @@ -288486,7 +315020,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001225" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001226", @@ -288506,7 +315042,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001226" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001227", @@ -288526,7 +315064,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001227" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001228", @@ -288546,7 +315086,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001228" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001229", @@ -288566,7 +315108,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001229" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001230", @@ -288586,7 +315130,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001230" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001231", @@ -288606,7 +315152,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001231" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001232", @@ -288626,7 +315174,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001232" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001233", @@ -288646,7 +315196,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001233" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001234", @@ -288666,7 +315218,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001234" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001235", @@ -288686,7 +315240,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001235" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001236", @@ -288706,7 +315262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001236" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001237", @@ -288726,7 +315284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001237" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001238", @@ -288746,7 +315306,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001238" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001239", @@ -288766,7 +315328,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001239" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001240", @@ -288786,7 +315350,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001240" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001241", @@ -288806,7 +315372,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001241" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001242", @@ -288826,7 +315394,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001242" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001243", @@ -288846,7 +315416,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001243" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001244", @@ -288866,7 +315438,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001244" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001245", @@ -288886,7 +315460,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001245" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001246", @@ -288906,7 +315482,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001246" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001247", @@ -288926,7 +315504,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001247" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001248", @@ -288946,7 +315526,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001248" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001249", @@ -288966,7 +315548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001249" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001250", @@ -288986,7 +315570,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001250" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001251", @@ -289006,7 +315592,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001251" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001252", @@ -289026,7 +315614,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001252" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001253", @@ -289046,7 +315636,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001253" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001254", @@ -289066,7 +315658,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001254" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001255", @@ -289086,7 +315680,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001255" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001256", @@ -289106,7 +315702,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001256" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001257", @@ -289126,7 +315724,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001257" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001258", @@ -289146,7 +315746,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001258" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001259", @@ -289166,7 +315768,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001259" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001260", @@ -289186,7 +315790,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001260" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001261", @@ -289206,7 +315812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001261" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001262", @@ -289226,7 +315834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001262" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001263", @@ -289246,7 +315856,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001263" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001264", @@ -289266,7 +315878,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001264" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001265", @@ -289286,7 +315900,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001265" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001266", @@ -289306,7 +315922,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001266" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001267", @@ -289326,7 +315944,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001267" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001268", @@ -289346,7 +315966,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001268" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001269", @@ -289366,7 +315988,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001269" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001270", @@ -289386,7 +316010,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001270" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001271", @@ -289406,7 +316032,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001271" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001272", @@ -289426,7 +316054,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001272" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001273", @@ -289446,7 +316076,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001273" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001274", @@ -289466,7 +316098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001274" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001275", @@ -289486,7 +316120,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001275" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001276", @@ -289506,7 +316142,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001276" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001277", @@ -289526,7 +316164,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001277" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001278", @@ -289546,7 +316186,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001278" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001279", @@ -289566,7 +316208,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001279" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001280", @@ -289586,7 +316230,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001280" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001281", @@ -289606,7 +316252,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001281" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001282", @@ -289626,7 +316274,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001282" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001283", @@ -289646,7 +316296,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001283" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001284", @@ -289666,7 +316318,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001284" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001285", @@ -289686,7 +316340,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001285" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001286", @@ -289706,7 +316362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001286" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001287", @@ -289726,7 +316384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001287" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001288", @@ -289746,7 +316406,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001288" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001289", @@ -289766,7 +316428,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001289" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001290", @@ -289786,7 +316450,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001290" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001291", @@ -289806,7 +316472,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001291" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001292", @@ -289826,7 +316494,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001292" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001293", @@ -289846,7 +316516,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001293" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001294", @@ -289866,7 +316538,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001294" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001295", @@ -289886,7 +316560,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001295" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001296", @@ -289906,7 +316582,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001296" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001297", @@ -289926,7 +316604,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001297" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001298", @@ -289946,7 +316626,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001298" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001299", @@ -289966,7 +316648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001299" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001300", @@ -289986,7 +316670,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001300" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001301", @@ -290006,7 +316692,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001301" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001302", @@ -290026,7 +316714,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001302" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001303", @@ -290046,7 +316736,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001303" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001304", @@ -290066,7 +316758,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001304" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001305", @@ -290086,7 +316780,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001305" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001306", @@ -290106,7 +316802,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001306" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001307", @@ -290126,7 +316824,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001307" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001308", @@ -290146,7 +316846,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001308" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001309", @@ -290166,7 +316868,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001309" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001310", @@ -290186,7 +316890,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001310" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001311", @@ -290206,7 +316912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001311" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001312", @@ -290226,7 +316934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001312" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001313", @@ -290246,7 +316956,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001313" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001314", @@ -290266,7 +316978,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001314" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001315", @@ -290286,7 +317000,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001315" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001316", @@ -290306,7 +317022,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001316" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001317", @@ -290326,7 +317044,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001317" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001318", @@ -290346,7 +317066,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001318" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001319", @@ -290366,7 +317088,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001319" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001320", @@ -290386,7 +317110,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001320" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001321", @@ -290406,7 +317132,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001321" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001322", @@ -290426,7 +317154,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001322" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001323", @@ -290446,7 +317176,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001323" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001324", @@ -290466,7 +317198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001324" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001325", @@ -290486,7 +317220,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001325" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001326", @@ -290506,7 +317242,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001326" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001327", @@ -290526,7 +317264,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001327" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001328", @@ -290546,7 +317286,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001328" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001329", @@ -290566,7 +317308,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001329" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001330", @@ -290586,7 +317330,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001330" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001331", @@ -290606,7 +317352,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001331" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001332", @@ -290626,7 +317374,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001332" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001333", @@ -290646,7 +317396,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001333" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001334", @@ -290666,7 +317418,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001334" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001335", @@ -290686,7 +317440,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001335" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001336", @@ -290706,7 +317462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001336" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001337", @@ -290726,7 +317484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001337" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001338", @@ -290746,7 +317506,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001338" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001339", @@ -290766,7 +317528,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001339" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001340", @@ -290786,7 +317550,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001340" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001341", @@ -290806,7 +317572,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001341" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001342", @@ -290826,7 +317594,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001342" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001343", @@ -290846,7 +317616,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001343" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001344", @@ -290866,7 +317638,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001344" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001345", @@ -290886,7 +317660,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001345" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001346", @@ -290906,7 +317682,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001346" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001347", @@ -290926,7 +317704,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001347" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001348", @@ -290946,7 +317726,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001348" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001349", @@ -290966,7 +317748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001349" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001350", @@ -290986,7 +317770,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001350" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001351", @@ -291006,7 +317792,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001351" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001352", @@ -291026,7 +317814,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001352" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001353", @@ -291046,7 +317836,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001353" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001354", @@ -291066,7 +317858,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001354" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001355", @@ -291086,7 +317880,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001355" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001356", @@ -291106,7 +317902,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001356" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001357", @@ -291126,7 +317924,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001357" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001358", @@ -291146,7 +317946,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001358" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001359", @@ -291166,7 +317968,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001359" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001360", @@ -291186,7 +317990,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001360" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001361", @@ -291206,7 +318012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001361" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001362", @@ -291226,7 +318034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001362" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001363", @@ -291246,7 +318056,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001363" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001364", @@ -291266,7 +318078,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001364" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001365", @@ -291286,7 +318100,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001365" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001366", @@ -291306,7 +318122,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001366" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001367", @@ -291326,7 +318144,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001367" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001368", @@ -291346,7 +318166,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001368" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001369", @@ -291366,7 +318188,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001369" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001370", @@ -291386,7 +318210,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001370" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001371", @@ -291406,7 +318232,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001371" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001372", @@ -291426,7 +318254,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001372" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001373", @@ -291446,7 +318276,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001373" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001374", @@ -291466,7 +318298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001374" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001375", @@ -291486,7 +318320,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001375" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001376", @@ -291506,7 +318342,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001376" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001377", @@ -291526,7 +318364,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001377" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001378", @@ -291546,7 +318386,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001378" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001379", @@ -291566,7 +318408,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001379" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001380", @@ -291586,7 +318430,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001380" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001381", @@ -291606,7 +318452,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001381" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001382", @@ -291626,7 +318474,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001382" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001383", @@ -291646,7 +318496,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001383" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001384", @@ -291666,7 +318518,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001384" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001385", @@ -291686,7 +318540,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001385" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001386", @@ -291706,7 +318562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001386" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001387", @@ -291726,7 +318584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001387" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001388", @@ -291746,7 +318606,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001388" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001389", @@ -291766,7 +318628,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001389" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001390", @@ -291786,7 +318650,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001390" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001391", @@ -291806,7 +318672,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001391" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001392", @@ -291826,7 +318694,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001392" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001393", @@ -291846,7 +318716,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001393" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001394", @@ -291866,7 +318738,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001394" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001395", @@ -291886,7 +318760,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001395" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001396", @@ -291906,7 +318782,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001396" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001397", @@ -291926,7 +318804,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001397" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001398", @@ -291946,7 +318826,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001398" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001399", @@ -291966,7 +318848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001399" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001400", @@ -291986,7 +318870,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001400" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001401", @@ -292006,7 +318892,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001401" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001402", @@ -292026,7 +318914,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001402" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001403", @@ -292046,7 +318936,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001403" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001404", @@ -292066,7 +318958,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001404" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001405", @@ -292086,7 +318980,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001405" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001406", @@ -292106,7 +319002,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001406" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001407", @@ -292126,7 +319024,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001407" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001408", @@ -292146,7 +319046,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001408" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001409", @@ -292166,7 +319068,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001409" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001410", @@ -292186,7 +319090,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001410" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001411", @@ -292206,7 +319112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001411" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001412", @@ -292226,7 +319134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001412" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001413", @@ -292246,7 +319156,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001413" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001414", @@ -292266,7 +319178,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001414" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001415", @@ -292286,7 +319200,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001415" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001416", @@ -292306,7 +319222,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001416" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001417", @@ -292326,7 +319244,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001417" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001418", @@ -292346,7 +319266,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001418" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001419", @@ -292366,7 +319288,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001419" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001420", @@ -292386,7 +319310,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001420" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001421", @@ -292406,7 +319332,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001421" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001422", @@ -292426,7 +319354,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001422" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001423", @@ -292446,7 +319376,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001423" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001424", @@ -292466,7 +319398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001424" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001425", @@ -292486,7 +319420,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001425" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001426", @@ -292506,7 +319442,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001426" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001427", @@ -292526,7 +319464,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001427" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001428", @@ -292546,7 +319486,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001428" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001429", @@ -292566,7 +319508,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001429" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001430", @@ -292586,7 +319530,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001430" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001431", @@ -292606,7 +319552,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001431" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001432", @@ -292626,7 +319574,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001432" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001433", @@ -292646,7 +319596,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001433" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001434", @@ -292666,7 +319618,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001434" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001435", @@ -292686,7 +319640,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001435" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001436", @@ -292706,7 +319662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001436" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001437", @@ -292726,7 +319684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001437" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001438", @@ -292746,7 +319706,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001438" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001439", @@ -292766,7 +319728,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001439" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001440", @@ -292786,7 +319750,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001440" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001441", @@ -292806,7 +319772,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001441" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001442", @@ -292826,7 +319794,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001442" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001443", @@ -292846,7 +319816,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001443" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001444", @@ -292866,7 +319838,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001444" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001445", @@ -292886,7 +319860,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001445" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001446", @@ -292906,7 +319882,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001446" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001447", @@ -292926,7 +319904,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001447" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001448", @@ -292946,7 +319926,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001448" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001449", @@ -292966,7 +319948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001449" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001450", @@ -292986,7 +319970,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001450" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001451", @@ -293006,7 +319992,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001451" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001452", @@ -293026,7 +320014,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001452" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001453", @@ -293046,7 +320036,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001453" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001454", @@ -293066,7 +320058,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001454" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001455", @@ -293086,7 +320080,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001455" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001456", @@ -293106,7 +320102,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001456" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001457", @@ -293126,7 +320124,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001457" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001458", @@ -293146,7 +320146,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001458" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001459", @@ -293166,7 +320168,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001459" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001460", @@ -293186,7 +320190,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001460" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001461", @@ -293206,7 +320212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001461" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001462", @@ -293226,7 +320234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001462" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001463", @@ -293246,7 +320256,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001463" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001464", @@ -293266,7 +320278,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001464" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001465", @@ -293286,7 +320300,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001465" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001466", @@ -293306,7 +320322,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001466" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001467", @@ -293326,7 +320344,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001467" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001468", @@ -293346,7 +320366,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001468" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001469", @@ -293366,7 +320388,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001469" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001470", @@ -293386,7 +320410,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001470" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001471", @@ -293406,7 +320432,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001471" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001472", @@ -293426,7 +320454,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001472" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001473", @@ -293446,7 +320476,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001473" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001474", @@ -293466,7 +320498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001474" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001475", @@ -293486,7 +320520,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001475" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001476", @@ -293506,7 +320542,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001476" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001477", @@ -293526,7 +320564,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001477" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001478", @@ -293546,7 +320586,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001478" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001479", @@ -293566,7 +320608,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001479" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001480", @@ -293586,7 +320630,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001480" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001481", @@ -293606,7 +320652,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001481" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001482", @@ -293626,7 +320674,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001482" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001483", @@ -293646,7 +320696,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001483" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001484", @@ -293666,7 +320718,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001484" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001485", @@ -293686,7 +320740,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001485" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001486", @@ -293706,7 +320762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001486" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001487", @@ -293726,7 +320784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001487" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001488", @@ -293746,7 +320806,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001488" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001489", @@ -293766,7 +320828,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001489" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001490", @@ -293786,7 +320850,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001490" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001491", @@ -293806,7 +320872,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001491" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001492", @@ -293826,7 +320894,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001492" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001493", @@ -293846,7 +320916,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001493" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001494", @@ -293866,7 +320938,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001494" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001495", @@ -293886,7 +320960,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001495" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001496", @@ -293906,7 +320982,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001496" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001497", @@ -293926,7 +321004,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001497" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001498", @@ -293946,7 +321026,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001498" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001499", @@ -293966,7 +321048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001499" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001500", @@ -293986,7 +321070,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001500" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001501", @@ -294006,7 +321092,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001501" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001502", @@ -294026,7 +321114,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001502" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001503", @@ -294046,7 +321136,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001503" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001504", @@ -294066,7 +321158,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001504" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001505", @@ -294086,7 +321180,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001505" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001506", @@ -294106,7 +321202,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001506" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001507", @@ -294126,7 +321224,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001507" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001508", @@ -294146,7 +321246,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001508" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001509", @@ -294166,7 +321268,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001509" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001510", @@ -294186,7 +321290,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001510" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001511", @@ -294206,7 +321312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001511" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001512", @@ -294226,7 +321334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001512" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001513", @@ -294246,7 +321356,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001513" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001514", @@ -294266,7 +321378,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001514" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001515", @@ -294286,7 +321400,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001515" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001516", @@ -294306,7 +321422,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001516" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001517", @@ -294326,7 +321444,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001517" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001518", @@ -294346,7 +321466,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001518" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001519", @@ -294366,7 +321488,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001519" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001520", @@ -294386,7 +321510,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001520" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001521", @@ -294406,7 +321532,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001521" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001522", @@ -294426,7 +321554,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001522" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001523", @@ -294446,7 +321576,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001523" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001524", @@ -294466,7 +321598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001524" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001525", @@ -294486,7 +321620,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001525" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001526", @@ -294506,7 +321642,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001526" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001527", @@ -294526,7 +321664,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001527" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001528", @@ -294546,7 +321686,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001528" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001529", @@ -294566,7 +321708,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001529" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001530", @@ -294586,7 +321730,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001530" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001531", @@ -294606,7 +321752,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001531" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001532", @@ -294626,7 +321774,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001532" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001533", @@ -294646,7 +321796,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001533" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001534", @@ -294666,7 +321818,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001534" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001535", @@ -294686,7 +321840,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001535" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001536", @@ -294706,7 +321862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001536" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001537", @@ -294726,7 +321884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001537" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001538", @@ -294746,7 +321906,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001538" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001539", @@ -294766,7 +321928,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001539" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001540", @@ -294786,7 +321950,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001540" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001541", @@ -294806,7 +321972,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001541" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001542", @@ -294826,7 +321994,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001542" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001543", @@ -294846,7 +322016,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001543" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001544", @@ -294866,7 +322038,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001544" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001545", @@ -294886,7 +322060,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001545" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001546", @@ -294906,7 +322082,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001546" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001547", @@ -294926,7 +322104,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001547" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001548", @@ -294946,7 +322126,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001548" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001549", @@ -294966,7 +322148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001549" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001550", @@ -294986,7 +322170,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001550" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001551", @@ -295006,7 +322192,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001551" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001552", @@ -295026,7 +322214,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001552" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001553", @@ -295046,7 +322236,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001553" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001554", @@ -295066,7 +322258,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001554" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001555", @@ -295086,7 +322280,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001555" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001556", @@ -295106,7 +322302,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001556" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001557", @@ -295126,7 +322324,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001557" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001558", @@ -295146,7 +322346,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001558" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001559", @@ -295166,7 +322368,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001559" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001560", @@ -295186,7 +322390,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001560" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001561", @@ -295206,7 +322412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001561" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001562", @@ -295226,7 +322434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001562" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001563", @@ -295246,7 +322456,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001563" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001564", @@ -295266,7 +322478,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001564" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001565", @@ -295286,7 +322500,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001565" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001566", @@ -295306,7 +322522,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001566" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001567", @@ -295326,7 +322544,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001567" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001568", @@ -295346,7 +322566,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001568" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001569", @@ -295366,7 +322588,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001569" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001570", @@ -295386,7 +322610,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001570" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001571", @@ -295406,7 +322632,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001571" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001572", @@ -295426,7 +322654,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001572" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001573", @@ -295446,7 +322676,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001573" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001574", @@ -295466,7 +322698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001574" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001575", @@ -295486,7 +322720,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001575" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001576", @@ -295506,7 +322742,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001576" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001577", @@ -295526,7 +322764,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001577" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001578", @@ -295546,7 +322786,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001578" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001579", @@ -295566,7 +322808,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001579" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001580", @@ -295586,7 +322830,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001580" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001581", @@ -295606,7 +322852,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001581" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001582", @@ -295626,7 +322874,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001582" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001583", @@ -295646,7 +322896,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001583" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001584", @@ -295666,7 +322918,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001584" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001585", @@ -295686,7 +322940,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001585" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001586", @@ -295706,7 +322962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001586" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001587", @@ -295726,7 +322984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001587" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001588", @@ -295746,7 +323006,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001588" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001589", @@ -295766,7 +323028,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001589" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001590", @@ -295786,7 +323050,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001590" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001591", @@ -295806,7 +323072,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001591" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001592", @@ -295826,7 +323094,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001592" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001593", @@ -295846,7 +323116,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001593" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001594", @@ -295866,7 +323138,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001594" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001595", @@ -295886,7 +323160,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001595" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001596", @@ -295906,7 +323182,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001596" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001597", @@ -295926,7 +323204,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001597" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001598", @@ -295946,7 +323226,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001598" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001599", @@ -295966,7 +323248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001599" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001600", @@ -295986,7 +323270,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001600" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001601", @@ -296006,7 +323292,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001601" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001602", @@ -296026,7 +323314,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001602" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001603", @@ -296046,7 +323336,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001603" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001604", @@ -296066,7 +323358,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001604" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@E14001605", @@ -296086,7 +323380,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001605" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000021", @@ -296106,7 +323402,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000021" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000027", @@ -296126,7 +323424,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000027" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000045", @@ -296146,7 +323446,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000045" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000048", @@ -296166,7 +323468,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000048" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000051", @@ -296186,7 +323490,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000051" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000060", @@ -296206,7 +323512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000060" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000061", @@ -296226,7 +323534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000061" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000062", @@ -296246,7 +323556,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000062" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000063", @@ -296266,7 +323578,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000063" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000064", @@ -296286,7 +323600,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000064" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000065", @@ -296306,7 +323622,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000065" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000066", @@ -296326,7 +323644,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000066" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000067", @@ -296346,7 +323666,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000067" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000068", @@ -296366,7 +323688,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000068" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000069", @@ -296386,7 +323710,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000069" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000070", @@ -296406,7 +323732,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000070" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000071", @@ -296426,7 +323754,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000071" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000072", @@ -296446,7 +323776,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000072" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000073", @@ -296466,7 +323798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000073" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000074", @@ -296486,7 +323820,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000074" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000075", @@ -296506,7 +323842,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000075" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000076", @@ -296526,7 +323864,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000076" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000077", @@ -296546,7 +323886,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000077" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000078", @@ -296566,7 +323908,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000078" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000079", @@ -296586,7 +323930,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000079" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000080", @@ -296606,7 +323952,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000080" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000081", @@ -296626,7 +323974,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000082", @@ -296646,7 +323996,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000083", @@ -296666,7 +324018,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000084", @@ -296686,7 +324040,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000085", @@ -296706,7 +324062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000086", @@ -296726,7 +324084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000087", @@ -296746,7 +324106,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000088", @@ -296766,7 +324128,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000089", @@ -296786,7 +324150,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000090", @@ -296806,7 +324172,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000091", @@ -296826,7 +324194,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000092", @@ -296846,7 +324216,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000093", @@ -296866,7 +324238,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000094", @@ -296886,7 +324260,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000095", @@ -296906,7 +324282,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000096", @@ -296926,7 +324304,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000097", @@ -296946,7 +324326,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000098", @@ -296966,7 +324348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000099", @@ -296986,7 +324370,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000100", @@ -297006,7 +324392,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000101", @@ -297026,7 +324414,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000102", @@ -297046,7 +324436,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000103", @@ -297066,7 +324458,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000104", @@ -297086,7 +324480,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000105", @@ -297106,7 +324502,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000106", @@ -297126,7 +324524,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000107", @@ -297146,7 +324546,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000108", @@ -297166,7 +324568,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000109", @@ -297186,7 +324590,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000110", @@ -297206,7 +324612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@S14000111", @@ -297226,7 +324634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000081", @@ -297246,7 +324656,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000082", @@ -297266,7 +324678,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000083", @@ -297286,7 +324700,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000084", @@ -297306,7 +324722,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000085", @@ -297326,7 +324744,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000086", @@ -297346,7 +324766,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000087", @@ -297366,7 +324788,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000088", @@ -297386,7 +324810,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000089", @@ -297406,7 +324832,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000090", @@ -297426,7 +324854,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000091", @@ -297446,7 +324876,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000092", @@ -297466,7 +324898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000093", @@ -297486,7 +324920,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000094", @@ -297506,7 +324942,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000095", @@ -297526,7 +324964,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000096", @@ -297546,7 +324986,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000097", @@ -297566,7 +325008,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000098", @@ -297586,7 +325030,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000099", @@ -297606,7 +325052,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000100", @@ -297626,7 +325074,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000101", @@ -297646,7 +325096,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000102", @@ -297666,7 +325118,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000103", @@ -297686,7 +325140,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000104", @@ -297706,7 +325162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000105", @@ -297726,7 +325184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000106", @@ -297746,7 +325206,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000107", @@ -297766,7 +325228,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000108", @@ -297786,7 +325250,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000109", @@ -297806,7 +325272,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000110", @@ -297826,7 +325294,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000111", @@ -297846,7 +325316,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_0@W07000112", @@ -297866,7 +325338,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000112" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001063", @@ -297886,7 +325360,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001063" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001064", @@ -297906,7 +325382,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001064" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001065", @@ -297926,7 +325404,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001065" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001066", @@ -297946,7 +325426,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001066" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001067", @@ -297966,7 +325448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001067" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001068", @@ -297986,7 +325470,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001068" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001069", @@ -298006,7 +325492,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001069" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001070", @@ -298026,7 +325514,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001070" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001071", @@ -298046,7 +325536,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001071" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001072", @@ -298066,7 +325558,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001072" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001073", @@ -298086,7 +325580,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001073" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001074", @@ -298106,7 +325602,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001074" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001075", @@ -298126,7 +325624,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001075" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001076", @@ -298146,7 +325646,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001076" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001077", @@ -298166,7 +325668,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001077" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001078", @@ -298186,7 +325690,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001078" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001079", @@ -298206,7 +325712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001079" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001080", @@ -298226,7 +325734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001080" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001081", @@ -298246,7 +325756,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001082", @@ -298266,7 +325778,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001083", @@ -298286,7 +325800,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001084", @@ -298306,7 +325822,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001085", @@ -298326,7 +325844,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001086", @@ -298346,7 +325866,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001087", @@ -298366,7 +325888,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001088", @@ -298386,7 +325910,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001089", @@ -298406,7 +325932,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001090", @@ -298426,7 +325954,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001091", @@ -298446,7 +325976,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001092", @@ -298466,7 +325998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001093", @@ -298486,7 +326020,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001094", @@ -298506,7 +326042,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001095", @@ -298526,7 +326064,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001096", @@ -298546,7 +326086,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001097", @@ -298566,7 +326108,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001098", @@ -298586,7 +326130,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001099", @@ -298606,7 +326152,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001100", @@ -298626,7 +326174,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001101", @@ -298646,7 +326196,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001102", @@ -298666,7 +326218,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001103", @@ -298686,7 +326240,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001104", @@ -298706,7 +326262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001105", @@ -298726,7 +326284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001106", @@ -298746,7 +326306,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001107", @@ -298766,7 +326328,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001108", @@ -298786,7 +326350,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001109", @@ -298806,7 +326372,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001110", @@ -298826,7 +326394,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001111", @@ -298846,7 +326416,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001112", @@ -298866,7 +326438,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001112" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001113", @@ -298886,7 +326460,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001113" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001114", @@ -298906,7 +326482,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001114" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001115", @@ -298926,7 +326504,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001115" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001116", @@ -298946,7 +326526,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001116" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001117", @@ -298966,7 +326548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001117" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001118", @@ -298986,7 +326570,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001118" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001119", @@ -299006,7 +326592,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001119" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001120", @@ -299026,7 +326614,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001120" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001121", @@ -299046,7 +326636,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001121" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001122", @@ -299066,7 +326658,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001122" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001123", @@ -299086,7 +326680,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001123" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001124", @@ -299106,7 +326702,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001124" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001125", @@ -299126,7 +326724,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001125" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001126", @@ -299146,7 +326746,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001126" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001127", @@ -299166,7 +326768,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001127" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001128", @@ -299186,7 +326790,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001128" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001129", @@ -299206,7 +326812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001129" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001130", @@ -299226,7 +326834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001130" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001131", @@ -299246,7 +326856,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001131" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001132", @@ -299266,7 +326878,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001132" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001133", @@ -299286,7 +326900,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001133" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001134", @@ -299306,7 +326922,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001134" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001135", @@ -299326,7 +326944,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001135" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001136", @@ -299346,7 +326966,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001136" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001137", @@ -299366,7 +326988,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001137" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001138", @@ -299386,7 +327010,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001138" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001139", @@ -299406,7 +327032,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001139" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001140", @@ -299426,7 +327054,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001140" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001141", @@ -299446,7 +327076,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001141" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001142", @@ -299466,7 +327098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001142" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001143", @@ -299486,7 +327120,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001143" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001144", @@ -299506,7 +327142,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001144" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001145", @@ -299526,7 +327164,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001145" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001146", @@ -299546,7 +327186,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001146" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001147", @@ -299566,7 +327208,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001147" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001148", @@ -299586,7 +327230,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001148" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001149", @@ -299606,7 +327252,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001149" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001150", @@ -299626,7 +327274,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001150" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001151", @@ -299646,7 +327296,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001151" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001152", @@ -299666,7 +327318,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001152" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001153", @@ -299686,7 +327340,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001153" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001154", @@ -299706,7 +327362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001154" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001155", @@ -299726,7 +327384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001155" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001156", @@ -299746,7 +327406,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001156" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001157", @@ -299766,7 +327428,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001157" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001158", @@ -299786,7 +327450,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001158" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001159", @@ -299806,7 +327472,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001159" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001160", @@ -299826,7 +327494,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001160" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001161", @@ -299846,7 +327516,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001161" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001162", @@ -299866,7 +327538,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001162" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001163", @@ -299886,7 +327560,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001163" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001164", @@ -299906,7 +327582,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001164" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001165", @@ -299926,7 +327604,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001165" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001166", @@ -299946,7 +327626,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001166" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001167", @@ -299966,7 +327648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001167" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001168", @@ -299986,7 +327670,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001168" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001169", @@ -300006,7 +327692,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001169" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001170", @@ -300026,7 +327714,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001170" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001171", @@ -300046,7 +327736,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001171" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001172", @@ -300066,7 +327758,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001172" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001173", @@ -300086,7 +327780,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001173" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001174", @@ -300106,7 +327802,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001174" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001175", @@ -300126,7 +327824,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001175" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001176", @@ -300146,7 +327846,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001176" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001177", @@ -300166,7 +327868,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001177" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001178", @@ -300186,7 +327890,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001178" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001179", @@ -300206,7 +327912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001179" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001180", @@ -300226,7 +327934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001180" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001181", @@ -300246,7 +327956,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001181" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001182", @@ -300266,7 +327978,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001182" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001183", @@ -300286,7 +328000,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001183" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001184", @@ -300306,7 +328022,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001184" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001185", @@ -300326,7 +328044,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001185" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001186", @@ -300346,7 +328066,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001186" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001187", @@ -300366,7 +328088,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001187" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001188", @@ -300386,7 +328110,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001188" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001189", @@ -300406,7 +328132,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001189" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001190", @@ -300426,7 +328154,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001190" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001191", @@ -300446,7 +328176,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001191" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001192", @@ -300466,7 +328198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001192" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001193", @@ -300486,7 +328220,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001193" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001194", @@ -300506,7 +328242,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001194" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001195", @@ -300526,7 +328264,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001195" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001196", @@ -300546,7 +328286,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001196" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001197", @@ -300566,7 +328308,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001197" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001198", @@ -300586,7 +328330,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001198" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001199", @@ -300606,7 +328352,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001199" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001200", @@ -300626,7 +328374,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001200" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001201", @@ -300646,7 +328396,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001201" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001202", @@ -300666,7 +328418,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001202" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001203", @@ -300686,7 +328440,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001203" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001204", @@ -300706,7 +328462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001204" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001205", @@ -300726,7 +328484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001205" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001206", @@ -300746,7 +328506,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001206" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001207", @@ -300766,7 +328528,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001207" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001208", @@ -300786,7 +328550,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001208" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001209", @@ -300806,7 +328572,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001209" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001210", @@ -300826,7 +328594,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001210" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001211", @@ -300846,7 +328616,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001211" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001212", @@ -300866,7 +328638,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001212" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001213", @@ -300886,7 +328660,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001213" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001214", @@ -300906,7 +328682,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001214" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001215", @@ -300926,7 +328704,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001215" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001216", @@ -300946,7 +328726,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001216" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001217", @@ -300966,7 +328748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001217" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001218", @@ -300986,7 +328770,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001218" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001219", @@ -301006,7 +328792,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001219" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001220", @@ -301026,7 +328814,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001220" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001221", @@ -301046,7 +328836,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001221" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001222", @@ -301066,7 +328858,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001222" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001223", @@ -301086,7 +328880,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001223" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001224", @@ -301106,7 +328902,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001224" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001225", @@ -301126,7 +328924,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001225" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001226", @@ -301146,7 +328946,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001226" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001227", @@ -301166,7 +328968,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001227" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001228", @@ -301186,7 +328990,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001228" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001229", @@ -301206,7 +329012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001229" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001230", @@ -301226,7 +329034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001230" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001231", @@ -301246,7 +329056,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001231" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001232", @@ -301266,7 +329078,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001232" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001233", @@ -301286,7 +329100,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001233" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001234", @@ -301306,7 +329122,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001234" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001235", @@ -301326,7 +329144,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001235" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001236", @@ -301346,7 +329166,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001236" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001237", @@ -301366,7 +329188,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001237" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001238", @@ -301386,7 +329210,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001238" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001239", @@ -301406,7 +329232,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001239" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001240", @@ -301426,7 +329254,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001240" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001241", @@ -301446,7 +329276,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001241" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001242", @@ -301466,7 +329298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001242" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001243", @@ -301486,7 +329320,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001243" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001244", @@ -301506,7 +329342,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001244" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001245", @@ -301526,7 +329364,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001245" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001246", @@ -301546,7 +329386,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001246" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001247", @@ -301566,7 +329408,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001247" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001248", @@ -301586,7 +329430,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001248" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001249", @@ -301606,7 +329452,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001249" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001250", @@ -301626,7 +329474,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001250" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001251", @@ -301646,7 +329496,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001251" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001252", @@ -301666,7 +329518,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001252" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001253", @@ -301686,7 +329540,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001253" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001254", @@ -301706,7 +329562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001254" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001255", @@ -301726,7 +329584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001255" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001256", @@ -301746,7 +329606,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001256" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001257", @@ -301766,7 +329628,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001257" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001258", @@ -301786,7 +329650,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001258" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001259", @@ -301806,7 +329672,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001259" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001260", @@ -301826,7 +329694,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001260" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001261", @@ -301846,7 +329716,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001261" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001262", @@ -301866,7 +329738,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001262" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001263", @@ -301886,7 +329760,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001263" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001264", @@ -301906,7 +329782,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001264" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001265", @@ -301926,7 +329804,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001265" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001266", @@ -301946,7 +329826,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001266" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001267", @@ -301966,7 +329848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001267" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001268", @@ -301986,7 +329870,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001268" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001269", @@ -302006,7 +329892,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001269" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001270", @@ -302026,7 +329914,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001270" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001271", @@ -302046,7 +329936,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001271" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001272", @@ -302066,7 +329958,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001272" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001273", @@ -302086,7 +329980,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001273" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001274", @@ -302106,7 +330002,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001274" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001275", @@ -302126,7 +330024,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001275" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001276", @@ -302146,7 +330046,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001276" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001277", @@ -302166,7 +330068,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001277" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001278", @@ -302186,7 +330090,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001278" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001279", @@ -302206,7 +330112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001279" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001280", @@ -302226,7 +330134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001280" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001281", @@ -302246,7 +330156,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001281" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001282", @@ -302266,7 +330178,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001282" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001283", @@ -302286,7 +330200,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001283" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001284", @@ -302306,7 +330222,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001284" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001285", @@ -302326,7 +330244,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001285" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001286", @@ -302346,7 +330266,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001286" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001287", @@ -302366,7 +330288,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001287" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001288", @@ -302386,7 +330310,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001288" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001289", @@ -302406,7 +330332,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001289" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001290", @@ -302426,7 +330354,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001290" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001291", @@ -302446,7 +330376,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001291" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001292", @@ -302466,7 +330398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001292" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001293", @@ -302486,7 +330420,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001293" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001294", @@ -302506,7 +330442,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001294" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001295", @@ -302526,7 +330464,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001295" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001296", @@ -302546,7 +330486,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001296" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001297", @@ -302566,7 +330508,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001297" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001298", @@ -302586,7 +330530,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001298" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001299", @@ -302606,7 +330552,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001299" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001300", @@ -302626,7 +330574,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001300" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001301", @@ -302646,7 +330596,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001301" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001302", @@ -302666,7 +330618,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001302" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001303", @@ -302686,7 +330640,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001303" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001304", @@ -302706,7 +330662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001304" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001305", @@ -302726,7 +330684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001305" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001306", @@ -302746,7 +330706,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001306" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001307", @@ -302766,7 +330728,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001307" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001308", @@ -302786,7 +330750,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001308" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001309", @@ -302806,7 +330772,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001309" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001310", @@ -302826,7 +330794,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001310" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001311", @@ -302846,7 +330816,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001311" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001312", @@ -302866,7 +330838,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001312" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001313", @@ -302886,7 +330860,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001313" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001314", @@ -302906,7 +330882,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001314" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001315", @@ -302926,7 +330904,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001315" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001316", @@ -302946,7 +330926,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001316" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001317", @@ -302966,7 +330948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001317" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001318", @@ -302986,7 +330970,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001318" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001319", @@ -303006,7 +330992,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001319" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001320", @@ -303026,7 +331014,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001320" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001321", @@ -303046,7 +331036,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001321" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001322", @@ -303066,7 +331058,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001322" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001323", @@ -303086,7 +331080,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001323" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001324", @@ -303106,7 +331102,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001324" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001325", @@ -303126,7 +331124,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001325" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001326", @@ -303146,7 +331146,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001326" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001327", @@ -303166,7 +331168,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001327" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001328", @@ -303186,7 +331190,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001328" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001329", @@ -303206,7 +331212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001329" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001330", @@ -303226,7 +331234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001330" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001331", @@ -303246,7 +331256,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001331" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001332", @@ -303266,7 +331278,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001332" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001333", @@ -303286,7 +331300,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001333" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001334", @@ -303306,7 +331322,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001334" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001335", @@ -303326,7 +331344,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001335" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001336", @@ -303346,7 +331366,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001336" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001337", @@ -303366,7 +331388,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001337" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001338", @@ -303386,7 +331410,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001338" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001339", @@ -303406,7 +331432,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001339" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001340", @@ -303426,7 +331454,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001340" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001341", @@ -303446,7 +331476,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001341" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001342", @@ -303466,7 +331498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001342" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001343", @@ -303486,7 +331520,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001343" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001344", @@ -303506,7 +331542,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001344" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001345", @@ -303526,7 +331564,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001345" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001346", @@ -303546,7 +331586,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001346" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001347", @@ -303566,7 +331608,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001347" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001348", @@ -303586,7 +331630,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001348" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001349", @@ -303606,7 +331652,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001349" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001350", @@ -303626,7 +331674,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001350" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001351", @@ -303646,7 +331696,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001351" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001352", @@ -303666,7 +331718,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001352" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001353", @@ -303686,7 +331740,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001353" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001354", @@ -303706,7 +331762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001354" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001355", @@ -303726,7 +331784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001355" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001356", @@ -303746,7 +331806,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001356" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001357", @@ -303766,7 +331828,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001357" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001358", @@ -303786,7 +331850,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001358" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001359", @@ -303806,7 +331872,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001359" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001360", @@ -303826,7 +331894,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001360" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001361", @@ -303846,7 +331916,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001361" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001362", @@ -303866,7 +331938,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001362" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001363", @@ -303886,7 +331960,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001363" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001364", @@ -303906,7 +331982,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001364" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001365", @@ -303926,7 +332004,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001365" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001366", @@ -303946,7 +332026,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001366" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001367", @@ -303966,7 +332048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001367" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001368", @@ -303986,7 +332070,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001368" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001369", @@ -304006,7 +332092,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001369" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001370", @@ -304026,7 +332114,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001370" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001371", @@ -304046,7 +332136,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001371" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001372", @@ -304066,7 +332158,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001372" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001373", @@ -304086,7 +332180,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001373" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001374", @@ -304106,7 +332202,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001374" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001375", @@ -304126,7 +332224,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001375" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001376", @@ -304146,7 +332246,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001376" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001377", @@ -304166,7 +332268,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001377" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001378", @@ -304186,7 +332290,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001378" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001379", @@ -304206,7 +332312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001379" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001380", @@ -304226,7 +332334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001380" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001381", @@ -304246,7 +332356,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001381" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001382", @@ -304266,7 +332378,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001382" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001383", @@ -304286,7 +332400,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001383" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001384", @@ -304306,7 +332422,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001384" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001385", @@ -304326,7 +332444,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001385" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001386", @@ -304346,7 +332466,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001386" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001387", @@ -304366,7 +332488,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001387" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001388", @@ -304386,7 +332510,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001388" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001389", @@ -304406,7 +332532,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001389" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001390", @@ -304426,7 +332554,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001390" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001391", @@ -304446,7 +332576,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001391" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001392", @@ -304466,7 +332598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001392" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001393", @@ -304486,7 +332620,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001393" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001394", @@ -304506,7 +332642,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001394" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001395", @@ -304526,7 +332664,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001395" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001396", @@ -304546,7 +332686,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001396" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001397", @@ -304566,7 +332708,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001397" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001398", @@ -304586,7 +332730,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001398" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001399", @@ -304606,7 +332752,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001399" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001400", @@ -304626,7 +332774,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001400" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001401", @@ -304646,7 +332796,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001401" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001402", @@ -304666,7 +332818,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001402" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001403", @@ -304686,7 +332840,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001403" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001404", @@ -304706,7 +332862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001404" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001405", @@ -304726,7 +332884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001405" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001406", @@ -304746,7 +332906,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001406" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001407", @@ -304766,7 +332928,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001407" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001408", @@ -304786,7 +332950,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001408" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001409", @@ -304806,7 +332972,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001409" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001410", @@ -304826,7 +332994,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001410" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001411", @@ -304846,7 +333016,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001411" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001412", @@ -304866,7 +333038,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001412" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001413", @@ -304886,7 +333060,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001413" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001414", @@ -304906,7 +333082,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001414" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001415", @@ -304926,7 +333104,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001415" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001416", @@ -304946,7 +333126,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001416" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001417", @@ -304966,7 +333148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001417" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001418", @@ -304986,7 +333170,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001418" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001419", @@ -305006,7 +333192,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001419" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001420", @@ -305026,7 +333214,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001420" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001421", @@ -305046,7 +333236,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001421" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001422", @@ -305066,7 +333258,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001422" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001423", @@ -305086,7 +333280,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001423" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001424", @@ -305106,7 +333302,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001424" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001425", @@ -305126,7 +333324,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001425" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001426", @@ -305146,7 +333346,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001426" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001427", @@ -305166,7 +333368,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001427" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001428", @@ -305186,7 +333390,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001428" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001429", @@ -305206,7 +333412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001429" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001430", @@ -305226,7 +333434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001430" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001431", @@ -305246,7 +333456,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001431" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001432", @@ -305266,7 +333478,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001432" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001433", @@ -305286,7 +333500,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001433" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001434", @@ -305306,7 +333522,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001434" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001435", @@ -305326,7 +333544,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001435" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001436", @@ -305346,7 +333566,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001436" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001437", @@ -305366,7 +333588,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001437" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001438", @@ -305386,7 +333610,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001438" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001439", @@ -305406,7 +333632,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001439" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001440", @@ -305426,7 +333654,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001440" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001441", @@ -305446,7 +333676,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001441" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001442", @@ -305466,7 +333698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001442" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001443", @@ -305486,7 +333720,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001443" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001444", @@ -305506,7 +333742,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001444" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001445", @@ -305526,7 +333764,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001445" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001446", @@ -305546,7 +333786,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001446" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001447", @@ -305566,7 +333808,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001447" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001448", @@ -305586,7 +333830,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001448" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001449", @@ -305606,7 +333852,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001449" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001450", @@ -305626,7 +333874,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001450" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001451", @@ -305646,7 +333896,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001451" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001452", @@ -305666,7 +333918,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001452" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001453", @@ -305686,7 +333940,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001453" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001454", @@ -305706,7 +333962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001454" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001455", @@ -305726,7 +333984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001455" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001456", @@ -305746,7 +334006,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001456" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001457", @@ -305766,7 +334028,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001457" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001458", @@ -305786,7 +334050,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001458" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001459", @@ -305806,7 +334072,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001459" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001460", @@ -305826,7 +334094,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001460" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001461", @@ -305846,7 +334116,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001461" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001462", @@ -305866,7 +334138,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001462" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001463", @@ -305886,7 +334160,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001463" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001464", @@ -305906,7 +334182,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001464" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001465", @@ -305926,7 +334204,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001465" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001466", @@ -305946,7 +334226,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001466" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001467", @@ -305966,7 +334248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001467" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001468", @@ -305986,7 +334270,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001468" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001469", @@ -306006,7 +334292,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001469" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001470", @@ -306026,7 +334314,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001470" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001471", @@ -306046,7 +334336,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001471" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001472", @@ -306066,7 +334358,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001472" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001473", @@ -306086,7 +334380,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001473" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001474", @@ -306106,7 +334402,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001474" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001475", @@ -306126,7 +334424,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001475" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001476", @@ -306146,7 +334446,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001476" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001477", @@ -306166,7 +334468,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001477" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001478", @@ -306186,7 +334490,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001478" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001479", @@ -306206,7 +334512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001479" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001480", @@ -306226,7 +334534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001480" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001481", @@ -306246,7 +334556,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001481" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001482", @@ -306266,7 +334578,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001482" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001483", @@ -306286,7 +334600,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001483" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001484", @@ -306306,7 +334622,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001484" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001485", @@ -306326,7 +334644,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001485" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001486", @@ -306346,7 +334666,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001486" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001487", @@ -306366,7 +334688,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001487" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001488", @@ -306386,7 +334710,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001488" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001489", @@ -306406,7 +334732,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001489" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001490", @@ -306426,7 +334754,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001490" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001491", @@ -306446,7 +334776,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001491" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001492", @@ -306466,7 +334798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001492" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001493", @@ -306486,7 +334820,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001493" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001494", @@ -306506,7 +334842,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001494" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001495", @@ -306526,7 +334864,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001495" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001496", @@ -306546,7 +334886,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001496" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001497", @@ -306566,7 +334908,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001497" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001498", @@ -306586,7 +334930,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001498" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001499", @@ -306606,7 +334952,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001499" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001500", @@ -306626,7 +334974,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001500" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001501", @@ -306646,7 +334996,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001501" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001502", @@ -306666,7 +335018,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001502" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001503", @@ -306686,7 +335040,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001503" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001504", @@ -306706,7 +335062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001504" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001505", @@ -306726,7 +335084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001505" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001506", @@ -306746,7 +335106,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001506" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001507", @@ -306766,7 +335128,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001507" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001508", @@ -306786,7 +335150,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001508" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001509", @@ -306806,7 +335172,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001509" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001510", @@ -306826,7 +335194,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001510" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001511", @@ -306846,7 +335216,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001511" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001512", @@ -306866,7 +335238,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001512" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001513", @@ -306886,7 +335260,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001513" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001514", @@ -306906,7 +335282,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001514" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001515", @@ -306926,7 +335304,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001515" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001516", @@ -306946,7 +335326,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001516" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001517", @@ -306966,7 +335348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001517" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001518", @@ -306986,7 +335370,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001518" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001519", @@ -307006,7 +335392,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001519" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001520", @@ -307026,7 +335414,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001520" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001521", @@ -307046,7 +335436,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001521" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001522", @@ -307066,7 +335458,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001522" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001523", @@ -307086,7 +335480,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001523" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001524", @@ -307106,7 +335502,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001524" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001525", @@ -307126,7 +335524,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001525" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001526", @@ -307146,7 +335546,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001526" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001527", @@ -307166,7 +335568,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001527" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001528", @@ -307186,7 +335590,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001528" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001529", @@ -307206,7 +335612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001529" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001530", @@ -307226,7 +335634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001530" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001531", @@ -307246,7 +335656,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001531" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001532", @@ -307266,7 +335678,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001532" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001533", @@ -307286,7 +335700,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001533" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001534", @@ -307306,7 +335722,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001534" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001535", @@ -307326,7 +335744,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001535" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001536", @@ -307346,7 +335766,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001536" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001537", @@ -307366,7 +335788,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001537" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001538", @@ -307386,7 +335810,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001538" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001539", @@ -307406,7 +335832,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001539" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001540", @@ -307426,7 +335854,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001540" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001541", @@ -307446,7 +335876,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001541" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001542", @@ -307466,7 +335898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001542" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001543", @@ -307486,7 +335920,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001543" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001544", @@ -307506,7 +335942,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001544" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001545", @@ -307526,7 +335964,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001545" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001546", @@ -307546,7 +335986,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001546" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001547", @@ -307566,7 +336008,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001547" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001548", @@ -307586,7 +336030,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001548" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001549", @@ -307606,7 +336052,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001549" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001550", @@ -307626,7 +336074,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001550" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001551", @@ -307646,7 +336096,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001551" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001552", @@ -307666,7 +336118,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001552" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001553", @@ -307686,7 +336140,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001553" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001554", @@ -307706,7 +336162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001554" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001555", @@ -307726,7 +336184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001555" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001556", @@ -307746,7 +336206,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001556" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001557", @@ -307766,7 +336228,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001557" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001558", @@ -307786,7 +336250,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001558" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001559", @@ -307806,7 +336272,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001559" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001560", @@ -307826,7 +336294,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001560" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001561", @@ -307846,7 +336316,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001561" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001562", @@ -307866,7 +336338,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001562" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001563", @@ -307886,7 +336360,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001563" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001564", @@ -307906,7 +336382,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001564" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001565", @@ -307926,7 +336404,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001565" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001566", @@ -307946,7 +336426,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001566" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001567", @@ -307966,7 +336448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001567" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001568", @@ -307986,7 +336470,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001568" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001569", @@ -308006,7 +336492,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001569" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001570", @@ -308026,7 +336514,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001570" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001571", @@ -308046,7 +336536,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001571" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001572", @@ -308066,7 +336558,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001572" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001573", @@ -308086,7 +336580,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001573" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001574", @@ -308106,7 +336602,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001574" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001575", @@ -308126,7 +336624,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001575" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001576", @@ -308146,7 +336646,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001576" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001577", @@ -308166,7 +336668,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001577" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001578", @@ -308186,7 +336690,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001578" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001579", @@ -308206,7 +336712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001579" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001580", @@ -308226,7 +336734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001580" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001581", @@ -308246,7 +336756,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001581" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001582", @@ -308266,7 +336778,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001582" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001583", @@ -308286,7 +336800,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001583" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001584", @@ -308306,7 +336822,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001584" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001585", @@ -308326,7 +336844,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001585" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001586", @@ -308346,7 +336866,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001586" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001587", @@ -308366,7 +336888,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001587" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001588", @@ -308386,7 +336910,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001588" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001589", @@ -308406,7 +336932,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001589" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001590", @@ -308426,7 +336954,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001590" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001591", @@ -308446,7 +336976,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001591" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001592", @@ -308466,7 +336998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001592" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001593", @@ -308486,7 +337020,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001593" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001594", @@ -308506,7 +337042,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001594" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001595", @@ -308526,7 +337064,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001595" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001596", @@ -308546,7 +337086,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001596" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001597", @@ -308566,7 +337108,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001597" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001598", @@ -308586,7 +337130,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001598" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001599", @@ -308606,7 +337152,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001599" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001600", @@ -308626,7 +337174,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001600" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001601", @@ -308646,7 +337196,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001601" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001602", @@ -308666,7 +337218,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001602" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001603", @@ -308686,7 +337240,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001603" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001604", @@ -308706,7 +337262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001604" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@E14001605", @@ -308726,7 +337284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001605" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000021", @@ -308746,7 +337306,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000021" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000027", @@ -308766,7 +337328,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000027" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000045", @@ -308786,7 +337350,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000045" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000048", @@ -308806,7 +337372,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000048" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000051", @@ -308826,7 +337394,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000051" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000060", @@ -308846,7 +337416,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000060" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000061", @@ -308866,7 +337438,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000061" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000062", @@ -308886,7 +337460,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000062" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000063", @@ -308906,7 +337482,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000063" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000064", @@ -308926,7 +337504,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000064" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000065", @@ -308946,7 +337526,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000065" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000066", @@ -308966,7 +337548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000066" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000067", @@ -308986,7 +337570,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000067" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000068", @@ -309006,7 +337592,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000068" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000069", @@ -309026,7 +337614,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000069" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000070", @@ -309046,7 +337636,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000070" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000071", @@ -309066,7 +337658,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000071" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000072", @@ -309086,7 +337680,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000072" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000073", @@ -309106,7 +337702,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000073" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000074", @@ -309126,7 +337724,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000074" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000075", @@ -309146,7 +337746,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000075" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000076", @@ -309166,7 +337768,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000076" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000077", @@ -309186,7 +337790,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000077" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000078", @@ -309206,7 +337812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000078" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000079", @@ -309226,7 +337834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000079" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000080", @@ -309246,7 +337856,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000080" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000081", @@ -309266,7 +337878,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000082", @@ -309286,7 +337900,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000083", @@ -309306,7 +337922,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000084", @@ -309326,7 +337944,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000085", @@ -309346,7 +337966,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000086", @@ -309366,7 +337988,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000087", @@ -309386,7 +338010,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000088", @@ -309406,7 +338032,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000089", @@ -309426,7 +338054,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000090", @@ -309446,7 +338076,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000091", @@ -309466,7 +338098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000092", @@ -309486,7 +338120,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000093", @@ -309506,7 +338142,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000094", @@ -309526,7 +338164,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000095", @@ -309546,7 +338186,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000096", @@ -309566,7 +338208,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000097", @@ -309586,7 +338230,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000098", @@ -309606,7 +338252,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000099", @@ -309626,7 +338274,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000100", @@ -309646,7 +338296,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000101", @@ -309666,7 +338318,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000102", @@ -309686,7 +338340,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000103", @@ -309706,7 +338362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000104", @@ -309726,7 +338384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000105", @@ -309746,7 +338406,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000106", @@ -309766,7 +338428,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000107", @@ -309786,7 +338450,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000108", @@ -309806,7 +338472,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000109", @@ -309826,7 +338494,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000110", @@ -309846,7 +338516,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@S14000111", @@ -309866,7 +338538,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000081", @@ -309886,7 +338560,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000082", @@ -309906,7 +338582,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000083", @@ -309926,7 +338604,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000084", @@ -309946,7 +338626,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000085", @@ -309966,7 +338648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000086", @@ -309986,7 +338670,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000087", @@ -310006,7 +338692,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000088", @@ -310026,7 +338714,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000089", @@ -310046,7 +338736,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000090", @@ -310066,7 +338758,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000091", @@ -310086,7 +338780,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000092", @@ -310106,7 +338802,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000093", @@ -310126,7 +338824,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000094", @@ -310146,7 +338846,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000095", @@ -310166,7 +338868,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000096", @@ -310186,7 +338890,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000097", @@ -310206,7 +338912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000098", @@ -310226,7 +338934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000099", @@ -310246,7 +338956,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000100", @@ -310266,7 +338978,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000101", @@ -310286,7 +339000,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000102", @@ -310306,7 +339022,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000103", @@ -310326,7 +339044,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000104", @@ -310346,7 +339066,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000105", @@ -310366,7 +339088,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000106", @@ -310386,7 +339110,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000107", @@ -310406,7 +339132,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000108", @@ -310426,7 +339154,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000109", @@ -310446,7 +339176,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000110", @@ -310466,7 +339198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000111", @@ -310486,7 +339220,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_1@W07000112", @@ -310506,7 +339242,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000112" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001063", @@ -310526,7 +339264,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001063" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001064", @@ -310546,7 +339286,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001064" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001065", @@ -310566,7 +339308,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001065" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001066", @@ -310586,7 +339330,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001066" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001067", @@ -310606,7 +339352,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001067" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001068", @@ -310626,7 +339374,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001068" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001069", @@ -310646,7 +339396,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001069" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001070", @@ -310666,7 +339418,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001070" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001071", @@ -310686,7 +339440,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001071" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001072", @@ -310706,7 +339462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001072" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001073", @@ -310726,7 +339484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001073" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001074", @@ -310746,7 +339506,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001074" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001075", @@ -310766,7 +339528,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001075" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001076", @@ -310786,7 +339550,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001076" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001077", @@ -310806,7 +339572,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001077" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001078", @@ -310826,7 +339594,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001078" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001079", @@ -310846,7 +339616,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001079" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001080", @@ -310866,7 +339638,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001080" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001081", @@ -310886,7 +339660,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001082", @@ -310906,7 +339682,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001083", @@ -310926,7 +339704,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001084", @@ -310946,7 +339726,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001085", @@ -310966,7 +339748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001086", @@ -310986,7 +339770,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001087", @@ -311006,7 +339792,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001088", @@ -311026,7 +339814,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001089", @@ -311046,7 +339836,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001090", @@ -311066,7 +339858,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001091", @@ -311086,7 +339880,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001092", @@ -311106,7 +339902,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001093", @@ -311126,7 +339924,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001094", @@ -311146,7 +339946,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001095", @@ -311166,7 +339968,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001096", @@ -311186,7 +339990,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001097", @@ -311206,7 +340012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001098", @@ -311226,7 +340034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001099", @@ -311246,7 +340056,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001100", @@ -311266,7 +340078,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001101", @@ -311286,7 +340100,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001102", @@ -311306,7 +340122,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001103", @@ -311326,7 +340144,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001104", @@ -311346,7 +340166,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001105", @@ -311366,7 +340188,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001106", @@ -311386,7 +340210,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001107", @@ -311406,7 +340232,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001108", @@ -311426,7 +340254,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001109", @@ -311446,7 +340276,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001110", @@ -311466,7 +340298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001111", @@ -311486,7 +340320,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001112", @@ -311506,7 +340342,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001112" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001113", @@ -311526,7 +340364,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001113" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001114", @@ -311546,7 +340386,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001114" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001115", @@ -311566,7 +340408,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001115" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001116", @@ -311586,7 +340430,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001116" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001117", @@ -311606,7 +340452,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001117" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001118", @@ -311626,7 +340474,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001118" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001119", @@ -311646,7 +340496,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001119" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001120", @@ -311666,7 +340518,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001120" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001121", @@ -311686,7 +340540,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001121" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001122", @@ -311706,7 +340562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001122" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001123", @@ -311726,7 +340584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001123" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001124", @@ -311746,7 +340606,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001124" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001125", @@ -311766,7 +340628,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001125" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001126", @@ -311786,7 +340650,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001126" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001127", @@ -311806,7 +340672,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001127" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001128", @@ -311826,7 +340694,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001128" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001129", @@ -311846,7 +340716,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001129" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001130", @@ -311866,7 +340738,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001130" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001131", @@ -311886,7 +340760,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001131" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001132", @@ -311906,7 +340782,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001132" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001133", @@ -311926,7 +340804,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001133" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001134", @@ -311946,7 +340826,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001134" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001135", @@ -311966,7 +340848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001135" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001136", @@ -311986,7 +340870,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001136" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001137", @@ -312006,7 +340892,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001137" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001138", @@ -312026,7 +340914,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001138" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001139", @@ -312046,7 +340936,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001139" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001140", @@ -312066,7 +340958,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001140" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001141", @@ -312086,7 +340980,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001141" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001142", @@ -312106,7 +341002,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001142" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001143", @@ -312126,7 +341024,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001143" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001144", @@ -312146,7 +341046,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001144" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001145", @@ -312166,7 +341068,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001145" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001146", @@ -312186,7 +341090,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001146" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001147", @@ -312206,7 +341112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001147" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001148", @@ -312226,7 +341134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001148" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001149", @@ -312246,7 +341156,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001149" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001150", @@ -312266,7 +341178,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001150" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001151", @@ -312286,7 +341200,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001151" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001152", @@ -312306,7 +341222,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001152" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001153", @@ -312326,7 +341244,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001153" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001154", @@ -312346,7 +341266,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001154" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001155", @@ -312366,7 +341288,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001155" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001156", @@ -312386,7 +341310,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001156" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001157", @@ -312406,7 +341332,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001157" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001158", @@ -312426,7 +341354,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001158" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001159", @@ -312446,7 +341376,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001159" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001160", @@ -312466,7 +341398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001160" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001161", @@ -312486,7 +341420,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001161" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001162", @@ -312506,7 +341442,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001162" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001163", @@ -312526,7 +341464,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001163" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001164", @@ -312546,7 +341486,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001164" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001165", @@ -312566,7 +341508,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001165" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001166", @@ -312586,7 +341530,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001166" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001167", @@ -312606,7 +341552,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001167" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001168", @@ -312626,7 +341574,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001168" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001169", @@ -312646,7 +341596,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001169" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001170", @@ -312666,7 +341618,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001170" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001171", @@ -312686,7 +341640,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001171" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001172", @@ -312706,7 +341662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001172" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001173", @@ -312726,7 +341684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001173" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001174", @@ -312746,7 +341706,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001174" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001175", @@ -312766,7 +341728,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001175" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001176", @@ -312786,7 +341750,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001176" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001177", @@ -312806,7 +341772,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001177" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001178", @@ -312826,7 +341794,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001178" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001179", @@ -312846,7 +341816,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001179" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001180", @@ -312866,7 +341838,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001180" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001181", @@ -312886,7 +341860,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001181" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001182", @@ -312906,7 +341882,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001182" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001183", @@ -312926,7 +341904,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001183" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001184", @@ -312946,7 +341926,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001184" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001185", @@ -312966,7 +341948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001185" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001186", @@ -312986,7 +341970,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001186" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001187", @@ -313006,7 +341992,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001187" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001188", @@ -313026,7 +342014,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001188" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001189", @@ -313046,7 +342036,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001189" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001190", @@ -313066,7 +342058,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001190" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001191", @@ -313086,7 +342080,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001191" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001192", @@ -313106,7 +342102,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001192" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001193", @@ -313126,7 +342124,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001193" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001194", @@ -313146,7 +342146,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001194" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001195", @@ -313166,7 +342168,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001195" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001196", @@ -313186,7 +342190,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001196" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001197", @@ -313206,7 +342212,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001197" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001198", @@ -313226,7 +342234,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001198" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001199", @@ -313246,7 +342256,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001199" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001200", @@ -313266,7 +342278,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001200" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001201", @@ -313286,7 +342300,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001201" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001202", @@ -313306,7 +342322,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001202" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001203", @@ -313326,7 +342344,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001203" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001204", @@ -313346,7 +342366,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001204" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001205", @@ -313366,7 +342388,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001205" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001206", @@ -313386,7 +342410,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001206" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001207", @@ -313406,7 +342432,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001207" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001208", @@ -313426,7 +342454,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001208" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001209", @@ -313446,7 +342476,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001209" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001210", @@ -313466,7 +342498,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001210" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001211", @@ -313486,7 +342520,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001211" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001212", @@ -313506,7 +342542,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001212" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001213", @@ -313526,7 +342564,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001213" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001214", @@ -313546,7 +342586,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001214" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001215", @@ -313566,7 +342608,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001215" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001216", @@ -313586,7 +342630,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001216" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001217", @@ -313606,7 +342652,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001217" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001218", @@ -313626,7 +342674,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001218" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001219", @@ -313646,7 +342696,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001219" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001220", @@ -313666,7 +342718,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001220" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001221", @@ -313686,7 +342740,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001221" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001222", @@ -313706,7 +342762,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001222" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001223", @@ -313726,7 +342784,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001223" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001224", @@ -313746,7 +342806,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001224" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001225", @@ -313766,7 +342828,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001225" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001226", @@ -313786,7 +342850,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001226" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001227", @@ -313806,7 +342872,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001227" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001228", @@ -313826,7 +342894,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001228" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001229", @@ -313846,7 +342916,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001229" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001230", @@ -313866,7 +342938,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001230" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001231", @@ -313886,7 +342960,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001231" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001232", @@ -313906,7 +342982,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001232" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001233", @@ -313926,7 +343004,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001233" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001234", @@ -313946,7 +343026,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001234" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001235", @@ -313966,7 +343048,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001235" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001236", @@ -313986,7 +343070,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001236" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001237", @@ -314006,7 +343092,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001237" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001238", @@ -314026,7 +343114,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001238" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001239", @@ -314046,7 +343136,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001239" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001240", @@ -314066,7 +343158,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001240" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001241", @@ -314086,7 +343180,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001241" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001242", @@ -314106,7 +343202,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001242" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001243", @@ -314126,7 +343224,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001243" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001244", @@ -314146,7 +343246,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001244" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001245", @@ -314166,7 +343268,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001245" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001246", @@ -314186,7 +343290,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001246" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001247", @@ -314206,7 +343312,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001247" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001248", @@ -314226,7 +343334,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001248" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001249", @@ -314246,7 +343356,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001249" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001250", @@ -314266,7 +343378,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001250" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001251", @@ -314286,7 +343400,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001251" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001252", @@ -314306,7 +343422,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001252" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001253", @@ -314326,7 +343444,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001253" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001254", @@ -314346,7 +343466,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001254" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001255", @@ -314366,7 +343488,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001255" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001256", @@ -314386,7 +343510,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001256" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001257", @@ -314406,7 +343532,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001257" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001258", @@ -314426,7 +343554,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001258" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001259", @@ -314446,7 +343576,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001259" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001260", @@ -314466,7 +343598,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001260" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001261", @@ -314486,7 +343620,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001261" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001262", @@ -314506,7 +343642,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001262" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001263", @@ -314526,7 +343664,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001263" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001264", @@ -314546,7 +343686,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001264" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001265", @@ -314566,7 +343708,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001265" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001266", @@ -314586,7 +343730,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001266" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001267", @@ -314606,7 +343752,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001267" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001268", @@ -314626,7 +343774,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001268" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001269", @@ -314646,7 +343796,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001269" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001270", @@ -314666,7 +343818,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001270" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001271", @@ -314686,7 +343840,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001271" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001272", @@ -314706,7 +343862,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001272" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001273", @@ -314726,7 +343884,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001273" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001274", @@ -314746,7 +343906,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001274" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001275", @@ -314766,7 +343928,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001275" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001276", @@ -314786,7 +343950,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001276" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001277", @@ -314806,7 +343972,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001277" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001278", @@ -314826,7 +343994,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001278" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001279", @@ -314846,7 +344016,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001279" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001280", @@ -314866,7 +344038,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001280" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001281", @@ -314886,7 +344060,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001281" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001282", @@ -314906,7 +344082,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001282" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001283", @@ -314926,7 +344104,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001283" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001284", @@ -314946,7 +344126,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001284" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001285", @@ -314966,7 +344148,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001285" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001286", @@ -314986,7 +344170,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001286" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001287", @@ -315006,7 +344192,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001287" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001288", @@ -315026,7 +344214,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001288" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001289", @@ -315046,7 +344236,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001289" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001290", @@ -315066,7 +344258,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001290" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001291", @@ -315086,7 +344280,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001291" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001292", @@ -315106,7 +344302,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001292" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001293", @@ -315126,7 +344324,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001293" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001294", @@ -315146,7 +344346,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001294" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001295", @@ -315166,7 +344368,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001295" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001296", @@ -315186,7 +344390,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001296" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001297", @@ -315206,7 +344412,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001297" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001298", @@ -315226,7 +344434,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001298" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001299", @@ -315246,7 +344456,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001299" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001300", @@ -315266,7 +344478,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001300" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001301", @@ -315286,7 +344500,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001301" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001302", @@ -315306,7 +344522,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001302" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001303", @@ -315326,7 +344544,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001303" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001304", @@ -315346,7 +344566,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001304" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001305", @@ -315366,7 +344588,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001305" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001306", @@ -315386,7 +344610,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001306" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001307", @@ -315406,7 +344632,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001307" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001308", @@ -315426,7 +344654,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001308" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001309", @@ -315446,7 +344676,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001309" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001310", @@ -315466,7 +344698,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001310" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001311", @@ -315486,7 +344720,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001311" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001312", @@ -315506,7 +344742,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001312" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001313", @@ -315526,7 +344764,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001313" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001314", @@ -315546,7 +344786,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001314" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001315", @@ -315566,7 +344808,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001315" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001316", @@ -315586,7 +344830,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001316" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001317", @@ -315606,7 +344852,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001317" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001318", @@ -315626,7 +344874,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001318" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001319", @@ -315646,7 +344896,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001319" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001320", @@ -315666,7 +344918,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001320" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001321", @@ -315686,7 +344940,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001321" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001322", @@ -315706,7 +344962,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001322" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001323", @@ -315726,7 +344984,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001323" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001324", @@ -315746,7 +345006,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001324" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001325", @@ -315766,7 +345028,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001325" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001326", @@ -315786,7 +345050,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001326" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001327", @@ -315806,7 +345072,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001327" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001328", @@ -315826,7 +345094,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001328" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001329", @@ -315846,7 +345116,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001329" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001330", @@ -315866,7 +345138,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001330" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001331", @@ -315886,7 +345160,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001331" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001332", @@ -315906,7 +345182,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001332" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001333", @@ -315926,7 +345204,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001333" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001334", @@ -315946,7 +345226,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001334" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001335", @@ -315966,7 +345248,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001335" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001336", @@ -315986,7 +345270,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001336" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001337", @@ -316006,7 +345292,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001337" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001338", @@ -316026,7 +345314,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001338" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001339", @@ -316046,7 +345336,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001339" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001340", @@ -316066,7 +345358,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001340" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001341", @@ -316086,7 +345380,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001341" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001342", @@ -316106,7 +345402,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001342" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001343", @@ -316126,7 +345424,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001343" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001344", @@ -316146,7 +345446,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001344" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001345", @@ -316166,7 +345468,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001345" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001346", @@ -316186,7 +345490,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001346" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001347", @@ -316206,7 +345512,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001347" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001348", @@ -316226,7 +345534,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001348" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001349", @@ -316246,7 +345556,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001349" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001350", @@ -316266,7 +345578,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001350" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001351", @@ -316286,7 +345600,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001351" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001352", @@ -316306,7 +345622,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001352" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001353", @@ -316326,7 +345644,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001353" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001354", @@ -316346,7 +345666,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001354" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001355", @@ -316366,7 +345688,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001355" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001356", @@ -316386,7 +345710,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001356" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001357", @@ -316406,7 +345732,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001357" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001358", @@ -316426,7 +345754,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001358" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001359", @@ -316446,7 +345776,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001359" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001360", @@ -316466,7 +345798,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001360" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001361", @@ -316486,7 +345820,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001361" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001362", @@ -316506,7 +345842,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001362" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001363", @@ -316526,7 +345864,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001363" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001364", @@ -316546,7 +345886,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001364" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001365", @@ -316566,7 +345908,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001365" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001366", @@ -316586,7 +345930,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001366" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001367", @@ -316606,7 +345952,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001367" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001368", @@ -316626,7 +345974,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001368" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001369", @@ -316646,7 +345996,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001369" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001370", @@ -316666,7 +346018,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001370" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001371", @@ -316686,7 +346040,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001371" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001372", @@ -316706,7 +346062,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001372" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001373", @@ -316726,7 +346084,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001373" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001374", @@ -316746,7 +346106,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001374" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001375", @@ -316766,7 +346128,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001375" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001376", @@ -316786,7 +346150,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001376" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001377", @@ -316806,7 +346172,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001377" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001378", @@ -316826,7 +346194,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001378" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001379", @@ -316846,7 +346216,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001379" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001380", @@ -316866,7 +346238,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001380" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001381", @@ -316886,7 +346260,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001381" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001382", @@ -316906,7 +346282,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001382" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001383", @@ -316926,7 +346304,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001383" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001384", @@ -316946,7 +346326,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001384" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001385", @@ -316966,7 +346348,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001385" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001386", @@ -316986,7 +346370,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001386" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001387", @@ -317006,7 +346392,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001387" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001388", @@ -317026,7 +346414,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001388" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001389", @@ -317046,7 +346436,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001389" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001390", @@ -317066,7 +346458,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001390" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001391", @@ -317086,7 +346480,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001391" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001392", @@ -317106,7 +346502,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001392" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001393", @@ -317126,7 +346524,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001393" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001394", @@ -317146,7 +346546,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001394" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001395", @@ -317166,7 +346568,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001395" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001396", @@ -317186,7 +346590,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001396" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001397", @@ -317206,7 +346612,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001397" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001398", @@ -317226,7 +346634,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001398" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001399", @@ -317246,7 +346656,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001399" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001400", @@ -317266,7 +346678,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001400" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001401", @@ -317286,7 +346700,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001401" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001402", @@ -317306,7 +346722,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001402" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001403", @@ -317326,7 +346744,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001403" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001404", @@ -317346,7 +346766,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001404" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001405", @@ -317366,7 +346788,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001405" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001406", @@ -317386,7 +346810,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001406" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001407", @@ -317406,7 +346832,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001407" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001408", @@ -317426,7 +346854,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001408" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001409", @@ -317446,7 +346876,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001409" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001410", @@ -317466,7 +346898,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001410" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001411", @@ -317486,7 +346920,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001411" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001412", @@ -317506,7 +346942,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001412" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001413", @@ -317526,7 +346964,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001413" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001414", @@ -317546,7 +346986,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001414" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001415", @@ -317566,7 +347008,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001415" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001416", @@ -317586,7 +347030,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001416" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001417", @@ -317606,7 +347052,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001417" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001418", @@ -317626,7 +347074,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001418" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001419", @@ -317646,7 +347096,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001419" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001420", @@ -317666,7 +347118,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001420" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001421", @@ -317686,7 +347140,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001421" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001422", @@ -317706,7 +347162,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001422" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001423", @@ -317726,7 +347184,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001423" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001424", @@ -317746,7 +347206,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001424" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001425", @@ -317766,7 +347228,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001425" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001426", @@ -317786,7 +347250,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001426" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001427", @@ -317806,7 +347272,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001427" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001428", @@ -317826,7 +347294,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001428" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001429", @@ -317846,7 +347316,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001429" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001430", @@ -317866,7 +347338,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001430" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001431", @@ -317886,7 +347360,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001431" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001432", @@ -317906,7 +347382,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001432" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001433", @@ -317926,7 +347404,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001433" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001434", @@ -317946,7 +347426,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001434" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001435", @@ -317966,7 +347448,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001435" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001436", @@ -317986,7 +347470,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001436" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001437", @@ -318006,7 +347492,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001437" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001438", @@ -318026,7 +347514,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001438" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001439", @@ -318046,7 +347536,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001439" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001440", @@ -318066,7 +347558,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001440" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001441", @@ -318086,7 +347580,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001441" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001442", @@ -318106,7 +347602,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001442" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001443", @@ -318126,7 +347624,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001443" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001444", @@ -318146,7 +347646,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001444" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001445", @@ -318166,7 +347668,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001445" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001446", @@ -318186,7 +347690,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001446" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001447", @@ -318206,7 +347712,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001447" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001448", @@ -318226,7 +347734,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001448" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001449", @@ -318246,7 +347756,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001449" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001450", @@ -318266,7 +347778,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001450" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001451", @@ -318286,7 +347800,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001451" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001452", @@ -318306,7 +347822,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001452" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001453", @@ -318326,7 +347844,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001453" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001454", @@ -318346,7 +347866,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001454" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001455", @@ -318366,7 +347888,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001455" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001456", @@ -318386,7 +347910,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001456" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001457", @@ -318406,7 +347932,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001457" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001458", @@ -318426,7 +347954,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001458" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001459", @@ -318446,7 +347976,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001459" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001460", @@ -318466,7 +347998,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001460" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001461", @@ -318486,7 +348020,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001461" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001462", @@ -318506,7 +348042,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001462" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001463", @@ -318526,7 +348064,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001463" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001464", @@ -318546,7 +348086,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001464" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001465", @@ -318566,7 +348108,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001465" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001466", @@ -318586,7 +348130,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001466" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001467", @@ -318606,7 +348152,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001467" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001468", @@ -318626,7 +348174,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001468" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001469", @@ -318646,7 +348196,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001469" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001470", @@ -318666,7 +348218,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001470" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001471", @@ -318686,7 +348240,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001471" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001472", @@ -318706,7 +348262,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001472" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001473", @@ -318726,7 +348284,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001473" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001474", @@ -318746,7 +348306,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001474" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001475", @@ -318766,7 +348328,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001475" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001476", @@ -318786,7 +348350,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001476" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001477", @@ -318806,7 +348372,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001477" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001478", @@ -318826,7 +348394,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001478" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001479", @@ -318846,7 +348416,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001479" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001480", @@ -318866,7 +348438,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001480" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001481", @@ -318886,7 +348460,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001481" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001482", @@ -318906,7 +348482,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001482" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001483", @@ -318926,7 +348504,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001483" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001484", @@ -318946,7 +348526,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001484" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001485", @@ -318966,7 +348548,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001485" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001486", @@ -318986,7 +348570,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001486" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001487", @@ -319006,7 +348592,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001487" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001488", @@ -319026,7 +348614,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001488" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001489", @@ -319046,7 +348636,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001489" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001490", @@ -319066,7 +348658,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001490" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001491", @@ -319086,7 +348680,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001491" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001492", @@ -319106,7 +348702,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001492" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001493", @@ -319126,7 +348724,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001493" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001494", @@ -319146,7 +348746,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001494" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001495", @@ -319166,7 +348768,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001495" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001496", @@ -319186,7 +348790,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001496" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001497", @@ -319206,7 +348812,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001497" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001498", @@ -319226,7 +348834,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001498" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001499", @@ -319246,7 +348856,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001499" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001500", @@ -319266,7 +348878,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001500" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001501", @@ -319286,7 +348900,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001501" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001502", @@ -319306,7 +348922,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001502" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001503", @@ -319326,7 +348944,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001503" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001504", @@ -319346,7 +348966,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001504" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001505", @@ -319366,7 +348988,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001505" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001506", @@ -319386,7 +349010,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001506" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001507", @@ -319406,7 +349032,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001507" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001508", @@ -319426,7 +349054,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001508" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001509", @@ -319446,7 +349076,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001509" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001510", @@ -319466,7 +349098,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001510" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001511", @@ -319486,7 +349120,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001511" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001512", @@ -319506,7 +349142,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001512" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001513", @@ -319526,7 +349164,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001513" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001514", @@ -319546,7 +349186,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001514" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001515", @@ -319566,7 +349208,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001515" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001516", @@ -319586,7 +349230,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001516" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001517", @@ -319606,7 +349252,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001517" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001518", @@ -319626,7 +349274,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001518" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001519", @@ -319646,7 +349296,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001519" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001520", @@ -319666,7 +349318,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001520" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001521", @@ -319686,7 +349340,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001521" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001522", @@ -319706,7 +349362,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001522" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001523", @@ -319726,7 +349384,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001523" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001524", @@ -319746,7 +349406,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001524" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001525", @@ -319766,7 +349428,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001525" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001526", @@ -319786,7 +349450,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001526" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001527", @@ -319806,7 +349472,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001527" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001528", @@ -319826,7 +349494,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001528" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001529", @@ -319846,7 +349516,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001529" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001530", @@ -319866,7 +349538,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001530" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001531", @@ -319886,7 +349560,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001531" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001532", @@ -319906,7 +349582,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001532" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001533", @@ -319926,7 +349604,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001533" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001534", @@ -319946,7 +349626,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001534" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001535", @@ -319966,7 +349648,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001535" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001536", @@ -319986,7 +349670,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001536" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001537", @@ -320006,7 +349692,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001537" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001538", @@ -320026,7 +349714,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001538" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001539", @@ -320046,7 +349736,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001539" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001540", @@ -320066,7 +349758,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001540" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001541", @@ -320086,7 +349780,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001541" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001542", @@ -320106,7 +349802,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001542" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001543", @@ -320126,7 +349824,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001543" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001544", @@ -320146,7 +349846,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001544" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001545", @@ -320166,7 +349868,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001545" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001546", @@ -320186,7 +349890,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001546" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001547", @@ -320206,7 +349912,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001547" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001548", @@ -320226,7 +349934,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001548" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001549", @@ -320246,7 +349956,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001549" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001550", @@ -320266,7 +349978,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001550" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001551", @@ -320286,7 +350000,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001551" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001552", @@ -320306,7 +350022,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001552" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001553", @@ -320326,7 +350044,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001553" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001554", @@ -320346,7 +350066,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001554" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001555", @@ -320366,7 +350088,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001555" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001556", @@ -320386,7 +350110,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001556" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001557", @@ -320406,7 +350132,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001557" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001558", @@ -320426,7 +350154,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001558" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001559", @@ -320446,7 +350176,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001559" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001560", @@ -320466,7 +350198,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001560" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001561", @@ -320486,7 +350220,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001561" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001562", @@ -320506,7 +350242,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001562" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001563", @@ -320526,7 +350264,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001563" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001564", @@ -320546,7 +350286,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001564" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001565", @@ -320566,7 +350308,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001565" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001566", @@ -320586,7 +350330,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001566" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001567", @@ -320606,7 +350352,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001567" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001568", @@ -320626,7 +350374,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001568" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001569", @@ -320646,7 +350396,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001569" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001570", @@ -320666,7 +350418,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001570" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001571", @@ -320686,7 +350440,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001571" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001572", @@ -320706,7 +350462,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001572" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001573", @@ -320726,7 +350484,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001573" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001574", @@ -320746,7 +350506,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001574" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001575", @@ -320766,7 +350528,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001575" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001576", @@ -320786,7 +350550,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001576" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001577", @@ -320806,7 +350572,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001577" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001578", @@ -320826,7 +350594,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001578" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001579", @@ -320846,7 +350616,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001579" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001580", @@ -320866,7 +350638,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001580" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001581", @@ -320886,7 +350660,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001581" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001582", @@ -320906,7 +350682,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001582" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001583", @@ -320926,7 +350704,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001583" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001584", @@ -320946,7 +350726,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001584" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001585", @@ -320966,7 +350748,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001585" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001586", @@ -320986,7 +350770,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001586" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001587", @@ -321006,7 +350792,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001587" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001588", @@ -321026,7 +350814,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001588" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001589", @@ -321046,7 +350836,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001589" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001590", @@ -321066,7 +350858,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001590" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001591", @@ -321086,7 +350880,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001591" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001592", @@ -321106,7 +350902,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001592" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001593", @@ -321126,7 +350924,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001593" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001594", @@ -321146,7 +350946,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001594" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001595", @@ -321166,7 +350968,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001595" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001596", @@ -321186,7 +350990,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001596" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001597", @@ -321206,7 +351012,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001597" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001598", @@ -321226,7 +351034,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001598" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001599", @@ -321246,7 +351056,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001599" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001600", @@ -321266,7 +351078,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001600" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001601", @@ -321286,7 +351100,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001601" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001602", @@ -321306,7 +351122,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001602" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001603", @@ -321326,7 +351144,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001603" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001604", @@ -321346,7 +351166,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001604" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@E14001605", @@ -321366,7 +351188,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "E14001605" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000021", @@ -321386,7 +351210,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000021" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000027", @@ -321406,7 +351232,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000027" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000045", @@ -321426,7 +351254,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000045" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000048", @@ -321446,7 +351276,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000048" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000051", @@ -321466,7 +351298,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000051" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000060", @@ -321486,7 +351320,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000060" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000061", @@ -321506,7 +351342,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000061" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000062", @@ -321526,7 +351364,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000062" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000063", @@ -321546,7 +351386,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000063" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000064", @@ -321566,7 +351408,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000064" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000065", @@ -321586,7 +351430,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000065" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000066", @@ -321606,7 +351452,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000066" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000067", @@ -321626,7 +351474,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000067" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000068", @@ -321646,7 +351496,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000068" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000069", @@ -321666,7 +351518,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000069" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000070", @@ -321686,7 +351540,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000070" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000071", @@ -321706,7 +351562,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000071" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000072", @@ -321726,7 +351584,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000072" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000073", @@ -321746,7 +351606,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000073" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000074", @@ -321766,7 +351628,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000074" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000075", @@ -321786,7 +351650,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000075" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000076", @@ -321806,7 +351672,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000076" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000077", @@ -321826,7 +351694,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000077" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000078", @@ -321846,7 +351716,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000078" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000079", @@ -321866,7 +351738,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000079" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000080", @@ -321886,7 +351760,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000080" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000081", @@ -321906,7 +351782,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000082", @@ -321926,7 +351804,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000083", @@ -321946,7 +351826,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000084", @@ -321966,7 +351848,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000085", @@ -321986,7 +351870,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000086", @@ -322006,7 +351892,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000087", @@ -322026,7 +351914,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000088", @@ -322046,7 +351936,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000089", @@ -322066,7 +351958,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000090", @@ -322086,7 +351980,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000091", @@ -322106,7 +352002,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000092", @@ -322126,7 +352024,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000093", @@ -322146,7 +352046,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000094", @@ -322166,7 +352068,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000095", @@ -322186,7 +352090,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000096", @@ -322206,7 +352112,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000097", @@ -322226,7 +352134,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000098", @@ -322246,7 +352156,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000099", @@ -322266,7 +352178,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000100", @@ -322286,7 +352200,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000101", @@ -322306,7 +352222,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000102", @@ -322326,7 +352244,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000103", @@ -322346,7 +352266,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000104", @@ -322366,7 +352288,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000105", @@ -322386,7 +352310,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000106", @@ -322406,7 +352332,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000107", @@ -322426,7 +352354,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000108", @@ -322446,7 +352376,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000109", @@ -322466,7 +352398,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000110", @@ -322486,7 +352420,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@S14000111", @@ -322506,7 +352442,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "S14000111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000081", @@ -322526,7 +352464,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000081" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000082", @@ -322546,7 +352486,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000082" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000083", @@ -322566,7 +352508,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000083" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000084", @@ -322586,7 +352530,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000084" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000085", @@ -322606,7 +352552,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000085" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000086", @@ -322626,7 +352574,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000086" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000087", @@ -322646,7 +352596,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000087" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000088", @@ -322666,7 +352618,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000088" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000089", @@ -322686,7 +352640,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000089" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000090", @@ -322706,7 +352662,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000090" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000091", @@ -322726,7 +352684,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000091" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000092", @@ -322746,7 +352706,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000092" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000093", @@ -322766,7 +352728,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000093" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000094", @@ -322786,7 +352750,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000094" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000095", @@ -322806,7 +352772,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000095" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000096", @@ -322826,7 +352794,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000096" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000097", @@ -322846,7 +352816,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000097" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000098", @@ -322866,7 +352838,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000098" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000099", @@ -322886,7 +352860,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000099" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000100", @@ -322906,7 +352882,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000100" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000101", @@ -322926,7 +352904,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000101" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000102", @@ -322946,7 +352926,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000102" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000103", @@ -322966,7 +352948,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000103" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000104", @@ -322986,7 +352970,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000104" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000105", @@ -323006,7 +352992,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000105" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000106", @@ -323026,7 +353014,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000106" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000107", @@ -323046,7 +353036,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000107" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000108", @@ -323066,7 +353058,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000108" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000109", @@ -323086,7 +353080,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000109" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000110", @@ -323106,7 +353102,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000110" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000111", @@ -323126,7 +353124,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000111" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_2@W07000112", @@ -323146,7 +353146,9 @@ "measure_kind": "prepared_column", "geography_level": "constituency", "geography_id": "W07000112" - } + }, + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001063", @@ -323167,7 +353169,9 @@ "geography_level": "constituency", "geography_id": "E14001063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001064", @@ -323188,7 +353192,9 @@ "geography_level": "constituency", "geography_id": "E14001064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001065", @@ -323209,7 +353215,9 @@ "geography_level": "constituency", "geography_id": "E14001065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001066", @@ -323230,7 +353238,9 @@ "geography_level": "constituency", "geography_id": "E14001066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001067", @@ -323251,7 +353261,9 @@ "geography_level": "constituency", "geography_id": "E14001067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001068", @@ -323272,7 +353284,9 @@ "geography_level": "constituency", "geography_id": "E14001068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001069", @@ -323293,7 +353307,9 @@ "geography_level": "constituency", "geography_id": "E14001069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001070", @@ -323314,7 +353330,9 @@ "geography_level": "constituency", "geography_id": "E14001070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001071", @@ -323335,7 +353353,9 @@ "geography_level": "constituency", "geography_id": "E14001071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001072", @@ -323356,7 +353376,9 @@ "geography_level": "constituency", "geography_id": "E14001072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001073", @@ -323377,7 +353399,9 @@ "geography_level": "constituency", "geography_id": "E14001073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001074", @@ -323398,7 +353422,9 @@ "geography_level": "constituency", "geography_id": "E14001074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001075", @@ -323419,7 +353445,9 @@ "geography_level": "constituency", "geography_id": "E14001075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001076", @@ -323440,7 +353468,9 @@ "geography_level": "constituency", "geography_id": "E14001076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001077", @@ -323461,7 +353491,9 @@ "geography_level": "constituency", "geography_id": "E14001077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001078", @@ -323482,7 +353514,9 @@ "geography_level": "constituency", "geography_id": "E14001078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001079", @@ -323503,7 +353537,9 @@ "geography_level": "constituency", "geography_id": "E14001079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001080", @@ -323524,7 +353560,9 @@ "geography_level": "constituency", "geography_id": "E14001080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001081", @@ -323545,7 +353583,9 @@ "geography_level": "constituency", "geography_id": "E14001081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001082", @@ -323566,7 +353606,9 @@ "geography_level": "constituency", "geography_id": "E14001082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001083", @@ -323587,7 +353629,9 @@ "geography_level": "constituency", "geography_id": "E14001083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001084", @@ -323608,7 +353652,9 @@ "geography_level": "constituency", "geography_id": "E14001084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001085", @@ -323629,7 +353675,9 @@ "geography_level": "constituency", "geography_id": "E14001085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001086", @@ -323650,7 +353698,9 @@ "geography_level": "constituency", "geography_id": "E14001086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001087", @@ -323671,7 +353721,9 @@ "geography_level": "constituency", "geography_id": "E14001087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001088", @@ -323692,7 +353744,9 @@ "geography_level": "constituency", "geography_id": "E14001088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001089", @@ -323713,7 +353767,9 @@ "geography_level": "constituency", "geography_id": "E14001089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001090", @@ -323734,7 +353790,9 @@ "geography_level": "constituency", "geography_id": "E14001090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001091", @@ -323755,7 +353813,9 @@ "geography_level": "constituency", "geography_id": "E14001091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001092", @@ -323776,7 +353836,9 @@ "geography_level": "constituency", "geography_id": "E14001092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001093", @@ -323797,7 +353859,9 @@ "geography_level": "constituency", "geography_id": "E14001093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001094", @@ -323818,7 +353882,9 @@ "geography_level": "constituency", "geography_id": "E14001094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001095", @@ -323839,7 +353905,9 @@ "geography_level": "constituency", "geography_id": "E14001095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001096", @@ -323860,7 +353928,9 @@ "geography_level": "constituency", "geography_id": "E14001096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001097", @@ -323881,7 +353951,9 @@ "geography_level": "constituency", "geography_id": "E14001097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001098", @@ -323902,7 +353974,9 @@ "geography_level": "constituency", "geography_id": "E14001098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001099", @@ -323923,7 +353997,9 @@ "geography_level": "constituency", "geography_id": "E14001099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001100", @@ -323944,7 +354020,9 @@ "geography_level": "constituency", "geography_id": "E14001100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001101", @@ -323965,7 +354043,9 @@ "geography_level": "constituency", "geography_id": "E14001101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001102", @@ -323986,7 +354066,9 @@ "geography_level": "constituency", "geography_id": "E14001102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001103", @@ -324007,7 +354089,9 @@ "geography_level": "constituency", "geography_id": "E14001103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001104", @@ -324028,7 +354112,9 @@ "geography_level": "constituency", "geography_id": "E14001104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001105", @@ -324049,7 +354135,9 @@ "geography_level": "constituency", "geography_id": "E14001105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001106", @@ -324070,7 +354158,9 @@ "geography_level": "constituency", "geography_id": "E14001106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001107", @@ -324091,7 +354181,9 @@ "geography_level": "constituency", "geography_id": "E14001107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001108", @@ -324112,7 +354204,9 @@ "geography_level": "constituency", "geography_id": "E14001108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001109", @@ -324133,7 +354227,9 @@ "geography_level": "constituency", "geography_id": "E14001109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001110", @@ -324154,7 +354250,9 @@ "geography_level": "constituency", "geography_id": "E14001110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001111", @@ -324175,7 +354273,9 @@ "geography_level": "constituency", "geography_id": "E14001111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001112", @@ -324196,7 +354296,9 @@ "geography_level": "constituency", "geography_id": "E14001112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001113", @@ -324217,7 +354319,9 @@ "geography_level": "constituency", "geography_id": "E14001113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001114", @@ -324238,7 +354342,9 @@ "geography_level": "constituency", "geography_id": "E14001114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001115", @@ -324259,7 +354365,9 @@ "geography_level": "constituency", "geography_id": "E14001115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001116", @@ -324280,7 +354388,9 @@ "geography_level": "constituency", "geography_id": "E14001116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001117", @@ -324301,7 +354411,9 @@ "geography_level": "constituency", "geography_id": "E14001117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001118", @@ -324322,7 +354434,9 @@ "geography_level": "constituency", "geography_id": "E14001118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001119", @@ -324343,7 +354457,9 @@ "geography_level": "constituency", "geography_id": "E14001119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001120", @@ -324364,7 +354480,9 @@ "geography_level": "constituency", "geography_id": "E14001120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001121", @@ -324385,7 +354503,9 @@ "geography_level": "constituency", "geography_id": "E14001121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001122", @@ -324406,7 +354526,9 @@ "geography_level": "constituency", "geography_id": "E14001122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001123", @@ -324427,7 +354549,9 @@ "geography_level": "constituency", "geography_id": "E14001123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001124", @@ -324448,7 +354572,9 @@ "geography_level": "constituency", "geography_id": "E14001124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001125", @@ -324469,7 +354595,9 @@ "geography_level": "constituency", "geography_id": "E14001125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001126", @@ -324490,7 +354618,9 @@ "geography_level": "constituency", "geography_id": "E14001126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001127", @@ -324511,7 +354641,9 @@ "geography_level": "constituency", "geography_id": "E14001127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001128", @@ -324532,7 +354664,9 @@ "geography_level": "constituency", "geography_id": "E14001128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001129", @@ -324553,7 +354687,9 @@ "geography_level": "constituency", "geography_id": "E14001129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001130", @@ -324574,7 +354710,9 @@ "geography_level": "constituency", "geography_id": "E14001130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001131", @@ -324595,7 +354733,9 @@ "geography_level": "constituency", "geography_id": "E14001131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001132", @@ -324616,7 +354756,9 @@ "geography_level": "constituency", "geography_id": "E14001132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001133", @@ -324637,7 +354779,9 @@ "geography_level": "constituency", "geography_id": "E14001133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001134", @@ -324658,7 +354802,9 @@ "geography_level": "constituency", "geography_id": "E14001134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001135", @@ -324679,7 +354825,9 @@ "geography_level": "constituency", "geography_id": "E14001135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001136", @@ -324700,7 +354848,9 @@ "geography_level": "constituency", "geography_id": "E14001136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001137", @@ -324721,7 +354871,9 @@ "geography_level": "constituency", "geography_id": "E14001137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001138", @@ -324742,7 +354894,9 @@ "geography_level": "constituency", "geography_id": "E14001138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001139", @@ -324763,7 +354917,9 @@ "geography_level": "constituency", "geography_id": "E14001139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001140", @@ -324784,7 +354940,9 @@ "geography_level": "constituency", "geography_id": "E14001140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001141", @@ -324805,7 +354963,9 @@ "geography_level": "constituency", "geography_id": "E14001141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001142", @@ -324826,7 +354986,9 @@ "geography_level": "constituency", "geography_id": "E14001142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001143", @@ -324847,7 +355009,9 @@ "geography_level": "constituency", "geography_id": "E14001143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001144", @@ -324868,7 +355032,9 @@ "geography_level": "constituency", "geography_id": "E14001144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001145", @@ -324889,7 +355055,9 @@ "geography_level": "constituency", "geography_id": "E14001145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001146", @@ -324910,7 +355078,9 @@ "geography_level": "constituency", "geography_id": "E14001146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001147", @@ -324931,7 +355101,9 @@ "geography_level": "constituency", "geography_id": "E14001147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001148", @@ -324952,7 +355124,9 @@ "geography_level": "constituency", "geography_id": "E14001148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001149", @@ -324973,7 +355147,9 @@ "geography_level": "constituency", "geography_id": "E14001149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001150", @@ -324994,7 +355170,9 @@ "geography_level": "constituency", "geography_id": "E14001150" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001151", @@ -325015,7 +355193,9 @@ "geography_level": "constituency", "geography_id": "E14001151" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001152", @@ -325036,7 +355216,9 @@ "geography_level": "constituency", "geography_id": "E14001152" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001153", @@ -325057,7 +355239,9 @@ "geography_level": "constituency", "geography_id": "E14001153" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001154", @@ -325078,7 +355262,9 @@ "geography_level": "constituency", "geography_id": "E14001154" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001155", @@ -325099,7 +355285,9 @@ "geography_level": "constituency", "geography_id": "E14001155" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001156", @@ -325120,7 +355308,9 @@ "geography_level": "constituency", "geography_id": "E14001156" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001157", @@ -325141,7 +355331,9 @@ "geography_level": "constituency", "geography_id": "E14001157" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001158", @@ -325162,7 +355354,9 @@ "geography_level": "constituency", "geography_id": "E14001158" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001159", @@ -325183,7 +355377,9 @@ "geography_level": "constituency", "geography_id": "E14001159" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001160", @@ -325204,7 +355400,9 @@ "geography_level": "constituency", "geography_id": "E14001160" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001161", @@ -325225,7 +355423,9 @@ "geography_level": "constituency", "geography_id": "E14001161" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001162", @@ -325246,7 +355446,9 @@ "geography_level": "constituency", "geography_id": "E14001162" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001163", @@ -325267,7 +355469,9 @@ "geography_level": "constituency", "geography_id": "E14001163" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001164", @@ -325288,7 +355492,9 @@ "geography_level": "constituency", "geography_id": "E14001164" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001165", @@ -325309,7 +355515,9 @@ "geography_level": "constituency", "geography_id": "E14001165" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001166", @@ -325330,7 +355538,9 @@ "geography_level": "constituency", "geography_id": "E14001166" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001167", @@ -325351,7 +355561,9 @@ "geography_level": "constituency", "geography_id": "E14001167" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001168", @@ -325372,7 +355584,9 @@ "geography_level": "constituency", "geography_id": "E14001168" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001169", @@ -325393,7 +355607,9 @@ "geography_level": "constituency", "geography_id": "E14001169" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001170", @@ -325414,7 +355630,9 @@ "geography_level": "constituency", "geography_id": "E14001170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001171", @@ -325435,7 +355653,9 @@ "geography_level": "constituency", "geography_id": "E14001171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001172", @@ -325456,7 +355676,9 @@ "geography_level": "constituency", "geography_id": "E14001172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001173", @@ -325477,7 +355699,9 @@ "geography_level": "constituency", "geography_id": "E14001173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001174", @@ -325498,7 +355722,9 @@ "geography_level": "constituency", "geography_id": "E14001174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001175", @@ -325519,7 +355745,9 @@ "geography_level": "constituency", "geography_id": "E14001175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001176", @@ -325540,7 +355768,9 @@ "geography_level": "constituency", "geography_id": "E14001176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001177", @@ -325561,7 +355791,9 @@ "geography_level": "constituency", "geography_id": "E14001177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001178", @@ -325582,7 +355814,9 @@ "geography_level": "constituency", "geography_id": "E14001178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001179", @@ -325603,7 +355837,9 @@ "geography_level": "constituency", "geography_id": "E14001179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001180", @@ -325624,7 +355860,9 @@ "geography_level": "constituency", "geography_id": "E14001180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001181", @@ -325645,7 +355883,9 @@ "geography_level": "constituency", "geography_id": "E14001181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001182", @@ -325666,7 +355906,9 @@ "geography_level": "constituency", "geography_id": "E14001182" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001183", @@ -325687,7 +355929,9 @@ "geography_level": "constituency", "geography_id": "E14001183" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001184", @@ -325708,7 +355952,9 @@ "geography_level": "constituency", "geography_id": "E14001184" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001185", @@ -325729,7 +355975,9 @@ "geography_level": "constituency", "geography_id": "E14001185" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001186", @@ -325750,7 +355998,9 @@ "geography_level": "constituency", "geography_id": "E14001186" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001187", @@ -325771,7 +356021,9 @@ "geography_level": "constituency", "geography_id": "E14001187" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001188", @@ -325792,7 +356044,9 @@ "geography_level": "constituency", "geography_id": "E14001188" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001189", @@ -325813,7 +356067,9 @@ "geography_level": "constituency", "geography_id": "E14001189" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001190", @@ -325834,7 +356090,9 @@ "geography_level": "constituency", "geography_id": "E14001190" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001191", @@ -325855,7 +356113,9 @@ "geography_level": "constituency", "geography_id": "E14001191" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001192", @@ -325876,7 +356136,9 @@ "geography_level": "constituency", "geography_id": "E14001192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001193", @@ -325897,7 +356159,9 @@ "geography_level": "constituency", "geography_id": "E14001193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001194", @@ -325918,7 +356182,9 @@ "geography_level": "constituency", "geography_id": "E14001194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001195", @@ -325939,7 +356205,9 @@ "geography_level": "constituency", "geography_id": "E14001195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001196", @@ -325960,7 +356228,9 @@ "geography_level": "constituency", "geography_id": "E14001196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001197", @@ -325981,7 +356251,9 @@ "geography_level": "constituency", "geography_id": "E14001197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001198", @@ -326002,7 +356274,9 @@ "geography_level": "constituency", "geography_id": "E14001198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001199", @@ -326023,7 +356297,9 @@ "geography_level": "constituency", "geography_id": "E14001199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001200", @@ -326044,7 +356320,9 @@ "geography_level": "constituency", "geography_id": "E14001200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001201", @@ -326065,7 +356343,9 @@ "geography_level": "constituency", "geography_id": "E14001201" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001202", @@ -326086,7 +356366,9 @@ "geography_level": "constituency", "geography_id": "E14001202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001203", @@ -326107,7 +356389,9 @@ "geography_level": "constituency", "geography_id": "E14001203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001204", @@ -326128,7 +356412,9 @@ "geography_level": "constituency", "geography_id": "E14001204" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001205", @@ -326149,7 +356435,9 @@ "geography_level": "constituency", "geography_id": "E14001205" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001206", @@ -326170,7 +356458,9 @@ "geography_level": "constituency", "geography_id": "E14001206" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001207", @@ -326191,7 +356481,9 @@ "geography_level": "constituency", "geography_id": "E14001207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001208", @@ -326212,7 +356504,9 @@ "geography_level": "constituency", "geography_id": "E14001208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001209", @@ -326233,7 +356527,9 @@ "geography_level": "constituency", "geography_id": "E14001209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001210", @@ -326254,7 +356550,9 @@ "geography_level": "constituency", "geography_id": "E14001210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001211", @@ -326275,7 +356573,9 @@ "geography_level": "constituency", "geography_id": "E14001211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001212", @@ -326296,7 +356596,9 @@ "geography_level": "constituency", "geography_id": "E14001212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001213", @@ -326317,7 +356619,9 @@ "geography_level": "constituency", "geography_id": "E14001213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001214", @@ -326338,7 +356642,9 @@ "geography_level": "constituency", "geography_id": "E14001214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001215", @@ -326359,7 +356665,9 @@ "geography_level": "constituency", "geography_id": "E14001215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001216", @@ -326380,7 +356688,9 @@ "geography_level": "constituency", "geography_id": "E14001216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001217", @@ -326401,7 +356711,9 @@ "geography_level": "constituency", "geography_id": "E14001217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001218", @@ -326422,7 +356734,9 @@ "geography_level": "constituency", "geography_id": "E14001218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001219", @@ -326443,7 +356757,9 @@ "geography_level": "constituency", "geography_id": "E14001219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001220", @@ -326464,7 +356780,9 @@ "geography_level": "constituency", "geography_id": "E14001220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001221", @@ -326485,7 +356803,9 @@ "geography_level": "constituency", "geography_id": "E14001221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001222", @@ -326506,7 +356826,9 @@ "geography_level": "constituency", "geography_id": "E14001222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001223", @@ -326527,7 +356849,9 @@ "geography_level": "constituency", "geography_id": "E14001223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001224", @@ -326548,7 +356872,9 @@ "geography_level": "constituency", "geography_id": "E14001224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001225", @@ -326569,7 +356895,9 @@ "geography_level": "constituency", "geography_id": "E14001225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001226", @@ -326590,7 +356918,9 @@ "geography_level": "constituency", "geography_id": "E14001226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001227", @@ -326611,7 +356941,9 @@ "geography_level": "constituency", "geography_id": "E14001227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001228", @@ -326632,7 +356964,9 @@ "geography_level": "constituency", "geography_id": "E14001228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001229", @@ -326653,7 +356987,9 @@ "geography_level": "constituency", "geography_id": "E14001229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001230", @@ -326674,7 +357010,9 @@ "geography_level": "constituency", "geography_id": "E14001230" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001231", @@ -326695,7 +357033,9 @@ "geography_level": "constituency", "geography_id": "E14001231" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001232", @@ -326716,7 +357056,9 @@ "geography_level": "constituency", "geography_id": "E14001232" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001233", @@ -326737,7 +357079,9 @@ "geography_level": "constituency", "geography_id": "E14001233" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001234", @@ -326758,7 +357102,9 @@ "geography_level": "constituency", "geography_id": "E14001234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001235", @@ -326779,7 +357125,9 @@ "geography_level": "constituency", "geography_id": "E14001235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001236", @@ -326800,7 +357148,9 @@ "geography_level": "constituency", "geography_id": "E14001236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001237", @@ -326821,7 +357171,9 @@ "geography_level": "constituency", "geography_id": "E14001237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001238", @@ -326842,7 +357194,9 @@ "geography_level": "constituency", "geography_id": "E14001238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001239", @@ -326863,7 +357217,9 @@ "geography_level": "constituency", "geography_id": "E14001239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001240", @@ -326884,7 +357240,9 @@ "geography_level": "constituency", "geography_id": "E14001240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001241", @@ -326905,7 +357263,9 @@ "geography_level": "constituency", "geography_id": "E14001241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001242", @@ -326926,7 +357286,9 @@ "geography_level": "constituency", "geography_id": "E14001242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001243", @@ -326947,7 +357309,9 @@ "geography_level": "constituency", "geography_id": "E14001243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001244", @@ -326968,7 +357332,9 @@ "geography_level": "constituency", "geography_id": "E14001244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001245", @@ -326989,7 +357355,9 @@ "geography_level": "constituency", "geography_id": "E14001245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001246", @@ -327010,7 +357378,9 @@ "geography_level": "constituency", "geography_id": "E14001246" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001247", @@ -327031,7 +357401,9 @@ "geography_level": "constituency", "geography_id": "E14001247" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001248", @@ -327052,7 +357424,9 @@ "geography_level": "constituency", "geography_id": "E14001248" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001249", @@ -327073,7 +357447,9 @@ "geography_level": "constituency", "geography_id": "E14001249" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001250", @@ -327094,7 +357470,9 @@ "geography_level": "constituency", "geography_id": "E14001250" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001251", @@ -327115,7 +357493,9 @@ "geography_level": "constituency", "geography_id": "E14001251" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001252", @@ -327136,7 +357516,9 @@ "geography_level": "constituency", "geography_id": "E14001252" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001253", @@ -327157,7 +357539,9 @@ "geography_level": "constituency", "geography_id": "E14001253" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001254", @@ -327178,7 +357562,9 @@ "geography_level": "constituency", "geography_id": "E14001254" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001255", @@ -327199,7 +357585,9 @@ "geography_level": "constituency", "geography_id": "E14001255" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001256", @@ -327220,7 +357608,9 @@ "geography_level": "constituency", "geography_id": "E14001256" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001257", @@ -327241,7 +357631,9 @@ "geography_level": "constituency", "geography_id": "E14001257" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001258", @@ -327262,7 +357654,9 @@ "geography_level": "constituency", "geography_id": "E14001258" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001259", @@ -327283,7 +357677,9 @@ "geography_level": "constituency", "geography_id": "E14001259" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001260", @@ -327304,7 +357700,9 @@ "geography_level": "constituency", "geography_id": "E14001260" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001261", @@ -327325,7 +357723,9 @@ "geography_level": "constituency", "geography_id": "E14001261" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001262", @@ -327346,7 +357746,9 @@ "geography_level": "constituency", "geography_id": "E14001262" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001263", @@ -327367,7 +357769,9 @@ "geography_level": "constituency", "geography_id": "E14001263" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001264", @@ -327388,7 +357792,9 @@ "geography_level": "constituency", "geography_id": "E14001264" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001265", @@ -327409,7 +357815,9 @@ "geography_level": "constituency", "geography_id": "E14001265" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001266", @@ -327430,7 +357838,9 @@ "geography_level": "constituency", "geography_id": "E14001266" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001267", @@ -327451,7 +357861,9 @@ "geography_level": "constituency", "geography_id": "E14001267" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001268", @@ -327472,7 +357884,9 @@ "geography_level": "constituency", "geography_id": "E14001268" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001269", @@ -327493,7 +357907,9 @@ "geography_level": "constituency", "geography_id": "E14001269" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001270", @@ -327514,7 +357930,9 @@ "geography_level": "constituency", "geography_id": "E14001270" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001271", @@ -327535,7 +357953,9 @@ "geography_level": "constituency", "geography_id": "E14001271" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001272", @@ -327556,7 +357976,9 @@ "geography_level": "constituency", "geography_id": "E14001272" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001273", @@ -327577,7 +357999,9 @@ "geography_level": "constituency", "geography_id": "E14001273" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001274", @@ -327598,7 +358022,9 @@ "geography_level": "constituency", "geography_id": "E14001274" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001275", @@ -327619,7 +358045,9 @@ "geography_level": "constituency", "geography_id": "E14001275" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001276", @@ -327640,7 +358068,9 @@ "geography_level": "constituency", "geography_id": "E14001276" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001277", @@ -327661,7 +358091,9 @@ "geography_level": "constituency", "geography_id": "E14001277" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001278", @@ -327682,7 +358114,9 @@ "geography_level": "constituency", "geography_id": "E14001278" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001279", @@ -327703,7 +358137,9 @@ "geography_level": "constituency", "geography_id": "E14001279" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001280", @@ -327724,7 +358160,9 @@ "geography_level": "constituency", "geography_id": "E14001280" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001281", @@ -327745,7 +358183,9 @@ "geography_level": "constituency", "geography_id": "E14001281" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001282", @@ -327766,7 +358206,9 @@ "geography_level": "constituency", "geography_id": "E14001282" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001283", @@ -327787,7 +358229,9 @@ "geography_level": "constituency", "geography_id": "E14001283" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001284", @@ -327808,7 +358252,9 @@ "geography_level": "constituency", "geography_id": "E14001284" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001285", @@ -327829,7 +358275,9 @@ "geography_level": "constituency", "geography_id": "E14001285" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001286", @@ -327850,7 +358298,9 @@ "geography_level": "constituency", "geography_id": "E14001286" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001287", @@ -327871,7 +358321,9 @@ "geography_level": "constituency", "geography_id": "E14001287" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001288", @@ -327892,7 +358344,9 @@ "geography_level": "constituency", "geography_id": "E14001288" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001289", @@ -327913,7 +358367,9 @@ "geography_level": "constituency", "geography_id": "E14001289" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001290", @@ -327934,7 +358390,9 @@ "geography_level": "constituency", "geography_id": "E14001290" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001291", @@ -327955,7 +358413,9 @@ "geography_level": "constituency", "geography_id": "E14001291" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001292", @@ -327976,7 +358436,9 @@ "geography_level": "constituency", "geography_id": "E14001292" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001293", @@ -327997,7 +358459,9 @@ "geography_level": "constituency", "geography_id": "E14001293" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001294", @@ -328018,7 +358482,9 @@ "geography_level": "constituency", "geography_id": "E14001294" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001295", @@ -328039,7 +358505,9 @@ "geography_level": "constituency", "geography_id": "E14001295" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001296", @@ -328060,7 +358528,9 @@ "geography_level": "constituency", "geography_id": "E14001296" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001297", @@ -328081,7 +358551,9 @@ "geography_level": "constituency", "geography_id": "E14001297" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001298", @@ -328102,7 +358574,9 @@ "geography_level": "constituency", "geography_id": "E14001298" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001299", @@ -328123,7 +358597,9 @@ "geography_level": "constituency", "geography_id": "E14001299" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001300", @@ -328144,7 +358620,9 @@ "geography_level": "constituency", "geography_id": "E14001300" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001301", @@ -328165,7 +358643,9 @@ "geography_level": "constituency", "geography_id": "E14001301" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001302", @@ -328186,7 +358666,9 @@ "geography_level": "constituency", "geography_id": "E14001302" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001303", @@ -328207,7 +358689,9 @@ "geography_level": "constituency", "geography_id": "E14001303" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001304", @@ -328228,7 +358712,9 @@ "geography_level": "constituency", "geography_id": "E14001304" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001305", @@ -328249,7 +358735,9 @@ "geography_level": "constituency", "geography_id": "E14001305" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001306", @@ -328270,7 +358758,9 @@ "geography_level": "constituency", "geography_id": "E14001306" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001307", @@ -328291,7 +358781,9 @@ "geography_level": "constituency", "geography_id": "E14001307" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001308", @@ -328312,7 +358804,9 @@ "geography_level": "constituency", "geography_id": "E14001308" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001309", @@ -328333,7 +358827,9 @@ "geography_level": "constituency", "geography_id": "E14001309" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001310", @@ -328354,7 +358850,9 @@ "geography_level": "constituency", "geography_id": "E14001310" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001311", @@ -328375,7 +358873,9 @@ "geography_level": "constituency", "geography_id": "E14001311" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001312", @@ -328396,7 +358896,9 @@ "geography_level": "constituency", "geography_id": "E14001312" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001313", @@ -328417,7 +358919,9 @@ "geography_level": "constituency", "geography_id": "E14001313" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001314", @@ -328438,7 +358942,9 @@ "geography_level": "constituency", "geography_id": "E14001314" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001315", @@ -328459,7 +358965,9 @@ "geography_level": "constituency", "geography_id": "E14001315" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001316", @@ -328480,7 +358988,9 @@ "geography_level": "constituency", "geography_id": "E14001316" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001317", @@ -328501,7 +359011,9 @@ "geography_level": "constituency", "geography_id": "E14001317" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001318", @@ -328522,7 +359034,9 @@ "geography_level": "constituency", "geography_id": "E14001318" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001319", @@ -328543,7 +359057,9 @@ "geography_level": "constituency", "geography_id": "E14001319" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001320", @@ -328564,7 +359080,9 @@ "geography_level": "constituency", "geography_id": "E14001320" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001321", @@ -328585,7 +359103,9 @@ "geography_level": "constituency", "geography_id": "E14001321" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001322", @@ -328606,7 +359126,9 @@ "geography_level": "constituency", "geography_id": "E14001322" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001323", @@ -328627,7 +359149,9 @@ "geography_level": "constituency", "geography_id": "E14001323" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001324", @@ -328648,7 +359172,9 @@ "geography_level": "constituency", "geography_id": "E14001324" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001325", @@ -328669,7 +359195,9 @@ "geography_level": "constituency", "geography_id": "E14001325" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001326", @@ -328690,7 +359218,9 @@ "geography_level": "constituency", "geography_id": "E14001326" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001327", @@ -328711,7 +359241,9 @@ "geography_level": "constituency", "geography_id": "E14001327" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001328", @@ -328732,7 +359264,9 @@ "geography_level": "constituency", "geography_id": "E14001328" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001329", @@ -328753,7 +359287,9 @@ "geography_level": "constituency", "geography_id": "E14001329" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001330", @@ -328774,7 +359310,9 @@ "geography_level": "constituency", "geography_id": "E14001330" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001331", @@ -328795,7 +359333,9 @@ "geography_level": "constituency", "geography_id": "E14001331" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001332", @@ -328816,7 +359356,9 @@ "geography_level": "constituency", "geography_id": "E14001332" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001333", @@ -328837,7 +359379,9 @@ "geography_level": "constituency", "geography_id": "E14001333" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001334", @@ -328858,7 +359402,9 @@ "geography_level": "constituency", "geography_id": "E14001334" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001335", @@ -328879,7 +359425,9 @@ "geography_level": "constituency", "geography_id": "E14001335" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001336", @@ -328900,7 +359448,9 @@ "geography_level": "constituency", "geography_id": "E14001336" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001337", @@ -328921,7 +359471,9 @@ "geography_level": "constituency", "geography_id": "E14001337" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001338", @@ -328942,7 +359494,9 @@ "geography_level": "constituency", "geography_id": "E14001338" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001339", @@ -328963,7 +359517,9 @@ "geography_level": "constituency", "geography_id": "E14001339" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001340", @@ -328984,7 +359540,9 @@ "geography_level": "constituency", "geography_id": "E14001340" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001341", @@ -329005,7 +359563,9 @@ "geography_level": "constituency", "geography_id": "E14001341" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001342", @@ -329026,7 +359586,9 @@ "geography_level": "constituency", "geography_id": "E14001342" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001343", @@ -329047,7 +359609,9 @@ "geography_level": "constituency", "geography_id": "E14001343" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001344", @@ -329068,7 +359632,9 @@ "geography_level": "constituency", "geography_id": "E14001344" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001345", @@ -329089,7 +359655,9 @@ "geography_level": "constituency", "geography_id": "E14001345" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001346", @@ -329110,7 +359678,9 @@ "geography_level": "constituency", "geography_id": "E14001346" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001347", @@ -329131,7 +359701,9 @@ "geography_level": "constituency", "geography_id": "E14001347" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001348", @@ -329152,7 +359724,9 @@ "geography_level": "constituency", "geography_id": "E14001348" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001349", @@ -329173,7 +359747,9 @@ "geography_level": "constituency", "geography_id": "E14001349" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001350", @@ -329194,7 +359770,9 @@ "geography_level": "constituency", "geography_id": "E14001350" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001351", @@ -329215,7 +359793,9 @@ "geography_level": "constituency", "geography_id": "E14001351" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001352", @@ -329236,7 +359816,9 @@ "geography_level": "constituency", "geography_id": "E14001352" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001353", @@ -329257,7 +359839,9 @@ "geography_level": "constituency", "geography_id": "E14001353" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001354", @@ -329278,7 +359862,9 @@ "geography_level": "constituency", "geography_id": "E14001354" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001355", @@ -329299,7 +359885,9 @@ "geography_level": "constituency", "geography_id": "E14001355" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001356", @@ -329320,7 +359908,9 @@ "geography_level": "constituency", "geography_id": "E14001356" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001357", @@ -329341,7 +359931,9 @@ "geography_level": "constituency", "geography_id": "E14001357" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001358", @@ -329362,7 +359954,9 @@ "geography_level": "constituency", "geography_id": "E14001358" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001359", @@ -329383,7 +359977,9 @@ "geography_level": "constituency", "geography_id": "E14001359" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001360", @@ -329404,7 +360000,9 @@ "geography_level": "constituency", "geography_id": "E14001360" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001361", @@ -329425,7 +360023,9 @@ "geography_level": "constituency", "geography_id": "E14001361" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001362", @@ -329446,7 +360046,9 @@ "geography_level": "constituency", "geography_id": "E14001362" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001363", @@ -329467,7 +360069,9 @@ "geography_level": "constituency", "geography_id": "E14001363" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001364", @@ -329488,7 +360092,9 @@ "geography_level": "constituency", "geography_id": "E14001364" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001365", @@ -329509,7 +360115,9 @@ "geography_level": "constituency", "geography_id": "E14001365" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001366", @@ -329530,7 +360138,9 @@ "geography_level": "constituency", "geography_id": "E14001366" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001367", @@ -329551,7 +360161,9 @@ "geography_level": "constituency", "geography_id": "E14001367" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001368", @@ -329572,7 +360184,9 @@ "geography_level": "constituency", "geography_id": "E14001368" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001369", @@ -329593,7 +360207,9 @@ "geography_level": "constituency", "geography_id": "E14001369" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001370", @@ -329614,7 +360230,9 @@ "geography_level": "constituency", "geography_id": "E14001370" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001371", @@ -329635,7 +360253,9 @@ "geography_level": "constituency", "geography_id": "E14001371" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001372", @@ -329656,7 +360276,9 @@ "geography_level": "constituency", "geography_id": "E14001372" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001373", @@ -329677,7 +360299,9 @@ "geography_level": "constituency", "geography_id": "E14001373" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001374", @@ -329698,7 +360322,9 @@ "geography_level": "constituency", "geography_id": "E14001374" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001375", @@ -329719,7 +360345,9 @@ "geography_level": "constituency", "geography_id": "E14001375" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001376", @@ -329740,7 +360368,9 @@ "geography_level": "constituency", "geography_id": "E14001376" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001377", @@ -329761,7 +360391,9 @@ "geography_level": "constituency", "geography_id": "E14001377" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001378", @@ -329782,7 +360414,9 @@ "geography_level": "constituency", "geography_id": "E14001378" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001379", @@ -329803,7 +360437,9 @@ "geography_level": "constituency", "geography_id": "E14001379" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001380", @@ -329824,7 +360460,9 @@ "geography_level": "constituency", "geography_id": "E14001380" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001381", @@ -329845,7 +360483,9 @@ "geography_level": "constituency", "geography_id": "E14001381" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001382", @@ -329866,7 +360506,9 @@ "geography_level": "constituency", "geography_id": "E14001382" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001383", @@ -329887,7 +360529,9 @@ "geography_level": "constituency", "geography_id": "E14001383" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001384", @@ -329908,7 +360552,9 @@ "geography_level": "constituency", "geography_id": "E14001384" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001385", @@ -329929,7 +360575,9 @@ "geography_level": "constituency", "geography_id": "E14001385" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001386", @@ -329950,7 +360598,9 @@ "geography_level": "constituency", "geography_id": "E14001386" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001387", @@ -329971,7 +360621,9 @@ "geography_level": "constituency", "geography_id": "E14001387" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001388", @@ -329992,7 +360644,9 @@ "geography_level": "constituency", "geography_id": "E14001388" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001389", @@ -330013,7 +360667,9 @@ "geography_level": "constituency", "geography_id": "E14001389" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001390", @@ -330034,7 +360690,9 @@ "geography_level": "constituency", "geography_id": "E14001390" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001391", @@ -330055,7 +360713,9 @@ "geography_level": "constituency", "geography_id": "E14001391" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001392", @@ -330076,7 +360736,9 @@ "geography_level": "constituency", "geography_id": "E14001392" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001393", @@ -330097,7 +360759,9 @@ "geography_level": "constituency", "geography_id": "E14001393" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001394", @@ -330118,7 +360782,9 @@ "geography_level": "constituency", "geography_id": "E14001394" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001395", @@ -330139,7 +360805,9 @@ "geography_level": "constituency", "geography_id": "E14001395" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001396", @@ -330160,7 +360828,9 @@ "geography_level": "constituency", "geography_id": "E14001396" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001397", @@ -330181,7 +360851,9 @@ "geography_level": "constituency", "geography_id": "E14001397" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001398", @@ -330202,7 +360874,9 @@ "geography_level": "constituency", "geography_id": "E14001398" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001399", @@ -330223,7 +360897,9 @@ "geography_level": "constituency", "geography_id": "E14001399" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001400", @@ -330244,7 +360920,9 @@ "geography_level": "constituency", "geography_id": "E14001400" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001401", @@ -330265,7 +360943,9 @@ "geography_level": "constituency", "geography_id": "E14001401" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001402", @@ -330286,7 +360966,9 @@ "geography_level": "constituency", "geography_id": "E14001402" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001403", @@ -330307,7 +360989,9 @@ "geography_level": "constituency", "geography_id": "E14001403" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001404", @@ -330328,7 +361012,9 @@ "geography_level": "constituency", "geography_id": "E14001404" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001405", @@ -330349,7 +361035,9 @@ "geography_level": "constituency", "geography_id": "E14001405" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001406", @@ -330370,7 +361058,9 @@ "geography_level": "constituency", "geography_id": "E14001406" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001407", @@ -330391,7 +361081,9 @@ "geography_level": "constituency", "geography_id": "E14001407" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001408", @@ -330412,7 +361104,9 @@ "geography_level": "constituency", "geography_id": "E14001408" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001409", @@ -330433,7 +361127,9 @@ "geography_level": "constituency", "geography_id": "E14001409" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001410", @@ -330454,7 +361150,9 @@ "geography_level": "constituency", "geography_id": "E14001410" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001411", @@ -330475,7 +361173,9 @@ "geography_level": "constituency", "geography_id": "E14001411" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001412", @@ -330496,7 +361196,9 @@ "geography_level": "constituency", "geography_id": "E14001412" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001413", @@ -330517,7 +361219,9 @@ "geography_level": "constituency", "geography_id": "E14001413" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001414", @@ -330538,7 +361242,9 @@ "geography_level": "constituency", "geography_id": "E14001414" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001415", @@ -330559,7 +361265,9 @@ "geography_level": "constituency", "geography_id": "E14001415" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001416", @@ -330580,7 +361288,9 @@ "geography_level": "constituency", "geography_id": "E14001416" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001417", @@ -330601,7 +361311,9 @@ "geography_level": "constituency", "geography_id": "E14001417" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001418", @@ -330622,7 +361334,9 @@ "geography_level": "constituency", "geography_id": "E14001418" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001419", @@ -330643,7 +361357,9 @@ "geography_level": "constituency", "geography_id": "E14001419" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001420", @@ -330664,7 +361380,9 @@ "geography_level": "constituency", "geography_id": "E14001420" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001421", @@ -330685,7 +361403,9 @@ "geography_level": "constituency", "geography_id": "E14001421" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001422", @@ -330706,7 +361426,9 @@ "geography_level": "constituency", "geography_id": "E14001422" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001423", @@ -330727,7 +361449,9 @@ "geography_level": "constituency", "geography_id": "E14001423" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001424", @@ -330748,7 +361472,9 @@ "geography_level": "constituency", "geography_id": "E14001424" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001425", @@ -330769,7 +361495,9 @@ "geography_level": "constituency", "geography_id": "E14001425" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001426", @@ -330790,7 +361518,9 @@ "geography_level": "constituency", "geography_id": "E14001426" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001427", @@ -330811,7 +361541,9 @@ "geography_level": "constituency", "geography_id": "E14001427" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001428", @@ -330832,7 +361564,9 @@ "geography_level": "constituency", "geography_id": "E14001428" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001429", @@ -330853,7 +361587,9 @@ "geography_level": "constituency", "geography_id": "E14001429" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001430", @@ -330874,7 +361610,9 @@ "geography_level": "constituency", "geography_id": "E14001430" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001431", @@ -330895,7 +361633,9 @@ "geography_level": "constituency", "geography_id": "E14001431" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001432", @@ -330916,7 +361656,9 @@ "geography_level": "constituency", "geography_id": "E14001432" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001433", @@ -330937,7 +361679,9 @@ "geography_level": "constituency", "geography_id": "E14001433" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001434", @@ -330958,7 +361702,9 @@ "geography_level": "constituency", "geography_id": "E14001434" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001435", @@ -330979,7 +361725,9 @@ "geography_level": "constituency", "geography_id": "E14001435" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001436", @@ -331000,7 +361748,9 @@ "geography_level": "constituency", "geography_id": "E14001436" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001437", @@ -331021,7 +361771,9 @@ "geography_level": "constituency", "geography_id": "E14001437" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001438", @@ -331042,7 +361794,9 @@ "geography_level": "constituency", "geography_id": "E14001438" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001439", @@ -331063,7 +361817,9 @@ "geography_level": "constituency", "geography_id": "E14001439" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001440", @@ -331084,7 +361840,9 @@ "geography_level": "constituency", "geography_id": "E14001440" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001441", @@ -331105,7 +361863,9 @@ "geography_level": "constituency", "geography_id": "E14001441" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001442", @@ -331126,7 +361886,9 @@ "geography_level": "constituency", "geography_id": "E14001442" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001443", @@ -331147,7 +361909,9 @@ "geography_level": "constituency", "geography_id": "E14001443" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001444", @@ -331168,7 +361932,9 @@ "geography_level": "constituency", "geography_id": "E14001444" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001445", @@ -331189,7 +361955,9 @@ "geography_level": "constituency", "geography_id": "E14001445" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001446", @@ -331210,7 +361978,9 @@ "geography_level": "constituency", "geography_id": "E14001446" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001447", @@ -331231,7 +362001,9 @@ "geography_level": "constituency", "geography_id": "E14001447" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001448", @@ -331252,7 +362024,9 @@ "geography_level": "constituency", "geography_id": "E14001448" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001449", @@ -331273,7 +362047,9 @@ "geography_level": "constituency", "geography_id": "E14001449" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001450", @@ -331294,7 +362070,9 @@ "geography_level": "constituency", "geography_id": "E14001450" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001451", @@ -331315,7 +362093,9 @@ "geography_level": "constituency", "geography_id": "E14001451" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001452", @@ -331336,7 +362116,9 @@ "geography_level": "constituency", "geography_id": "E14001452" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001453", @@ -331357,7 +362139,9 @@ "geography_level": "constituency", "geography_id": "E14001453" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001454", @@ -331378,7 +362162,9 @@ "geography_level": "constituency", "geography_id": "E14001454" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001455", @@ -331399,7 +362185,9 @@ "geography_level": "constituency", "geography_id": "E14001455" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001456", @@ -331420,7 +362208,9 @@ "geography_level": "constituency", "geography_id": "E14001456" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001457", @@ -331441,7 +362231,9 @@ "geography_level": "constituency", "geography_id": "E14001457" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001458", @@ -331462,7 +362254,9 @@ "geography_level": "constituency", "geography_id": "E14001458" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001459", @@ -331483,7 +362277,9 @@ "geography_level": "constituency", "geography_id": "E14001459" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001460", @@ -331504,7 +362300,9 @@ "geography_level": "constituency", "geography_id": "E14001460" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001461", @@ -331525,7 +362323,9 @@ "geography_level": "constituency", "geography_id": "E14001461" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001462", @@ -331546,7 +362346,9 @@ "geography_level": "constituency", "geography_id": "E14001462" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001463", @@ -331567,7 +362369,9 @@ "geography_level": "constituency", "geography_id": "E14001463" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001464", @@ -331588,7 +362392,9 @@ "geography_level": "constituency", "geography_id": "E14001464" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001465", @@ -331609,7 +362415,9 @@ "geography_level": "constituency", "geography_id": "E14001465" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001466", @@ -331630,7 +362438,9 @@ "geography_level": "constituency", "geography_id": "E14001466" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001467", @@ -331651,7 +362461,9 @@ "geography_level": "constituency", "geography_id": "E14001467" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001468", @@ -331672,7 +362484,9 @@ "geography_level": "constituency", "geography_id": "E14001468" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001469", @@ -331693,7 +362507,9 @@ "geography_level": "constituency", "geography_id": "E14001469" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001470", @@ -331714,7 +362530,9 @@ "geography_level": "constituency", "geography_id": "E14001470" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001471", @@ -331735,7 +362553,9 @@ "geography_level": "constituency", "geography_id": "E14001471" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001472", @@ -331756,7 +362576,9 @@ "geography_level": "constituency", "geography_id": "E14001472" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001473", @@ -331777,7 +362599,9 @@ "geography_level": "constituency", "geography_id": "E14001473" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001474", @@ -331798,7 +362622,9 @@ "geography_level": "constituency", "geography_id": "E14001474" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001475", @@ -331819,7 +362645,9 @@ "geography_level": "constituency", "geography_id": "E14001475" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001476", @@ -331840,7 +362668,9 @@ "geography_level": "constituency", "geography_id": "E14001476" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001477", @@ -331861,7 +362691,9 @@ "geography_level": "constituency", "geography_id": "E14001477" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001478", @@ -331882,7 +362714,9 @@ "geography_level": "constituency", "geography_id": "E14001478" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001479", @@ -331903,7 +362737,9 @@ "geography_level": "constituency", "geography_id": "E14001479" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001480", @@ -331924,7 +362760,9 @@ "geography_level": "constituency", "geography_id": "E14001480" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001481", @@ -331945,7 +362783,9 @@ "geography_level": "constituency", "geography_id": "E14001481" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001482", @@ -331966,7 +362806,9 @@ "geography_level": "constituency", "geography_id": "E14001482" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001483", @@ -331987,7 +362829,9 @@ "geography_level": "constituency", "geography_id": "E14001483" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001484", @@ -332008,7 +362852,9 @@ "geography_level": "constituency", "geography_id": "E14001484" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001485", @@ -332029,7 +362875,9 @@ "geography_level": "constituency", "geography_id": "E14001485" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001486", @@ -332050,7 +362898,9 @@ "geography_level": "constituency", "geography_id": "E14001486" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001487", @@ -332071,7 +362921,9 @@ "geography_level": "constituency", "geography_id": "E14001487" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001488", @@ -332092,7 +362944,9 @@ "geography_level": "constituency", "geography_id": "E14001488" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001489", @@ -332113,7 +362967,9 @@ "geography_level": "constituency", "geography_id": "E14001489" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001490", @@ -332134,7 +362990,9 @@ "geography_level": "constituency", "geography_id": "E14001490" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001491", @@ -332155,7 +363013,9 @@ "geography_level": "constituency", "geography_id": "E14001491" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001492", @@ -332176,7 +363036,9 @@ "geography_level": "constituency", "geography_id": "E14001492" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001493", @@ -332197,7 +363059,9 @@ "geography_level": "constituency", "geography_id": "E14001493" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001494", @@ -332218,7 +363082,9 @@ "geography_level": "constituency", "geography_id": "E14001494" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001495", @@ -332239,7 +363105,9 @@ "geography_level": "constituency", "geography_id": "E14001495" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001496", @@ -332260,7 +363128,9 @@ "geography_level": "constituency", "geography_id": "E14001496" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001497", @@ -332281,7 +363151,9 @@ "geography_level": "constituency", "geography_id": "E14001497" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001498", @@ -332302,7 +363174,9 @@ "geography_level": "constituency", "geography_id": "E14001498" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001499", @@ -332323,7 +363197,9 @@ "geography_level": "constituency", "geography_id": "E14001499" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001500", @@ -332344,7 +363220,9 @@ "geography_level": "constituency", "geography_id": "E14001500" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001501", @@ -332365,7 +363243,9 @@ "geography_level": "constituency", "geography_id": "E14001501" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001502", @@ -332386,7 +363266,9 @@ "geography_level": "constituency", "geography_id": "E14001502" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001503", @@ -332407,7 +363289,9 @@ "geography_level": "constituency", "geography_id": "E14001503" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001504", @@ -332428,7 +363312,9 @@ "geography_level": "constituency", "geography_id": "E14001504" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001505", @@ -332449,7 +363335,9 @@ "geography_level": "constituency", "geography_id": "E14001505" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001506", @@ -332470,7 +363358,9 @@ "geography_level": "constituency", "geography_id": "E14001506" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001507", @@ -332491,7 +363381,9 @@ "geography_level": "constituency", "geography_id": "E14001507" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001508", @@ -332512,7 +363404,9 @@ "geography_level": "constituency", "geography_id": "E14001508" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001509", @@ -332533,7 +363427,9 @@ "geography_level": "constituency", "geography_id": "E14001509" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001510", @@ -332554,7 +363450,9 @@ "geography_level": "constituency", "geography_id": "E14001510" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001511", @@ -332575,7 +363473,9 @@ "geography_level": "constituency", "geography_id": "E14001511" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001512", @@ -332596,7 +363496,9 @@ "geography_level": "constituency", "geography_id": "E14001512" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001513", @@ -332617,7 +363519,9 @@ "geography_level": "constituency", "geography_id": "E14001513" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001514", @@ -332638,7 +363542,9 @@ "geography_level": "constituency", "geography_id": "E14001514" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001515", @@ -332659,7 +363565,9 @@ "geography_level": "constituency", "geography_id": "E14001515" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001516", @@ -332680,7 +363588,9 @@ "geography_level": "constituency", "geography_id": "E14001516" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001517", @@ -332701,7 +363611,9 @@ "geography_level": "constituency", "geography_id": "E14001517" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001518", @@ -332722,7 +363634,9 @@ "geography_level": "constituency", "geography_id": "E14001518" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001519", @@ -332743,7 +363657,9 @@ "geography_level": "constituency", "geography_id": "E14001519" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001520", @@ -332764,7 +363680,9 @@ "geography_level": "constituency", "geography_id": "E14001520" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001521", @@ -332785,7 +363703,9 @@ "geography_level": "constituency", "geography_id": "E14001521" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001522", @@ -332806,7 +363726,9 @@ "geography_level": "constituency", "geography_id": "E14001522" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001523", @@ -332827,7 +363749,9 @@ "geography_level": "constituency", "geography_id": "E14001523" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001524", @@ -332848,7 +363772,9 @@ "geography_level": "constituency", "geography_id": "E14001524" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001525", @@ -332869,7 +363795,9 @@ "geography_level": "constituency", "geography_id": "E14001525" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001526", @@ -332890,7 +363818,9 @@ "geography_level": "constituency", "geography_id": "E14001526" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001527", @@ -332911,7 +363841,9 @@ "geography_level": "constituency", "geography_id": "E14001527" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001528", @@ -332932,7 +363864,9 @@ "geography_level": "constituency", "geography_id": "E14001528" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001529", @@ -332953,7 +363887,9 @@ "geography_level": "constituency", "geography_id": "E14001529" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001530", @@ -332974,7 +363910,9 @@ "geography_level": "constituency", "geography_id": "E14001530" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001531", @@ -332995,7 +363933,9 @@ "geography_level": "constituency", "geography_id": "E14001531" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001532", @@ -333016,7 +363956,9 @@ "geography_level": "constituency", "geography_id": "E14001532" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001533", @@ -333037,7 +363979,9 @@ "geography_level": "constituency", "geography_id": "E14001533" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001534", @@ -333058,7 +364002,9 @@ "geography_level": "constituency", "geography_id": "E14001534" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001535", @@ -333079,7 +364025,9 @@ "geography_level": "constituency", "geography_id": "E14001535" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001536", @@ -333100,7 +364048,9 @@ "geography_level": "constituency", "geography_id": "E14001536" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001537", @@ -333121,7 +364071,9 @@ "geography_level": "constituency", "geography_id": "E14001537" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001538", @@ -333142,7 +364094,9 @@ "geography_level": "constituency", "geography_id": "E14001538" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001539", @@ -333163,7 +364117,9 @@ "geography_level": "constituency", "geography_id": "E14001539" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001540", @@ -333184,7 +364140,9 @@ "geography_level": "constituency", "geography_id": "E14001540" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001541", @@ -333205,7 +364163,9 @@ "geography_level": "constituency", "geography_id": "E14001541" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001542", @@ -333226,7 +364186,9 @@ "geography_level": "constituency", "geography_id": "E14001542" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001543", @@ -333247,7 +364209,9 @@ "geography_level": "constituency", "geography_id": "E14001543" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001544", @@ -333268,7 +364232,9 @@ "geography_level": "constituency", "geography_id": "E14001544" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001545", @@ -333289,7 +364255,9 @@ "geography_level": "constituency", "geography_id": "E14001545" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001546", @@ -333310,7 +364278,9 @@ "geography_level": "constituency", "geography_id": "E14001546" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001547", @@ -333331,7 +364301,9 @@ "geography_level": "constituency", "geography_id": "E14001547" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001548", @@ -333352,7 +364324,9 @@ "geography_level": "constituency", "geography_id": "E14001548" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001549", @@ -333373,7 +364347,9 @@ "geography_level": "constituency", "geography_id": "E14001549" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001550", @@ -333394,7 +364370,9 @@ "geography_level": "constituency", "geography_id": "E14001550" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001551", @@ -333415,7 +364393,9 @@ "geography_level": "constituency", "geography_id": "E14001551" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001552", @@ -333436,7 +364416,9 @@ "geography_level": "constituency", "geography_id": "E14001552" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001553", @@ -333457,7 +364439,9 @@ "geography_level": "constituency", "geography_id": "E14001553" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001554", @@ -333478,7 +364462,9 @@ "geography_level": "constituency", "geography_id": "E14001554" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001555", @@ -333499,7 +364485,9 @@ "geography_level": "constituency", "geography_id": "E14001555" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001556", @@ -333520,7 +364508,9 @@ "geography_level": "constituency", "geography_id": "E14001556" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001557", @@ -333541,7 +364531,9 @@ "geography_level": "constituency", "geography_id": "E14001557" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001558", @@ -333562,7 +364554,9 @@ "geography_level": "constituency", "geography_id": "E14001558" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001559", @@ -333583,7 +364577,9 @@ "geography_level": "constituency", "geography_id": "E14001559" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001560", @@ -333604,7 +364600,9 @@ "geography_level": "constituency", "geography_id": "E14001560" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001561", @@ -333625,7 +364623,9 @@ "geography_level": "constituency", "geography_id": "E14001561" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001562", @@ -333646,7 +364646,9 @@ "geography_level": "constituency", "geography_id": "E14001562" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001563", @@ -333667,7 +364669,9 @@ "geography_level": "constituency", "geography_id": "E14001563" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001564", @@ -333688,7 +364692,9 @@ "geography_level": "constituency", "geography_id": "E14001564" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001565", @@ -333709,7 +364715,9 @@ "geography_level": "constituency", "geography_id": "E14001565" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001566", @@ -333730,7 +364738,9 @@ "geography_level": "constituency", "geography_id": "E14001566" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001567", @@ -333751,7 +364761,9 @@ "geography_level": "constituency", "geography_id": "E14001567" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001568", @@ -333772,7 +364784,9 @@ "geography_level": "constituency", "geography_id": "E14001568" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001569", @@ -333793,7 +364807,9 @@ "geography_level": "constituency", "geography_id": "E14001569" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001570", @@ -333814,7 +364830,9 @@ "geography_level": "constituency", "geography_id": "E14001570" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001571", @@ -333835,7 +364853,9 @@ "geography_level": "constituency", "geography_id": "E14001571" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001572", @@ -333856,7 +364876,9 @@ "geography_level": "constituency", "geography_id": "E14001572" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001573", @@ -333877,7 +364899,9 @@ "geography_level": "constituency", "geography_id": "E14001573" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001574", @@ -333898,7 +364922,9 @@ "geography_level": "constituency", "geography_id": "E14001574" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001575", @@ -333919,7 +364945,9 @@ "geography_level": "constituency", "geography_id": "E14001575" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001576", @@ -333940,7 +364968,9 @@ "geography_level": "constituency", "geography_id": "E14001576" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001577", @@ -333961,7 +364991,9 @@ "geography_level": "constituency", "geography_id": "E14001577" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001578", @@ -333982,7 +365014,9 @@ "geography_level": "constituency", "geography_id": "E14001578" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001579", @@ -334003,7 +365037,9 @@ "geography_level": "constituency", "geography_id": "E14001579" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001580", @@ -334024,7 +365060,9 @@ "geography_level": "constituency", "geography_id": "E14001580" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001581", @@ -334045,7 +365083,9 @@ "geography_level": "constituency", "geography_id": "E14001581" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001582", @@ -334066,7 +365106,9 @@ "geography_level": "constituency", "geography_id": "E14001582" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001583", @@ -334087,7 +365129,9 @@ "geography_level": "constituency", "geography_id": "E14001583" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001584", @@ -334108,7 +365152,9 @@ "geography_level": "constituency", "geography_id": "E14001584" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001585", @@ -334129,7 +365175,9 @@ "geography_level": "constituency", "geography_id": "E14001585" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001586", @@ -334150,7 +365198,9 @@ "geography_level": "constituency", "geography_id": "E14001586" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001587", @@ -334171,7 +365221,9 @@ "geography_level": "constituency", "geography_id": "E14001587" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001588", @@ -334192,7 +365244,9 @@ "geography_level": "constituency", "geography_id": "E14001588" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001589", @@ -334213,7 +365267,9 @@ "geography_level": "constituency", "geography_id": "E14001589" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001590", @@ -334234,7 +365290,9 @@ "geography_level": "constituency", "geography_id": "E14001590" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001591", @@ -334255,7 +365313,9 @@ "geography_level": "constituency", "geography_id": "E14001591" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001592", @@ -334276,7 +365336,9 @@ "geography_level": "constituency", "geography_id": "E14001592" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001593", @@ -334297,7 +365359,9 @@ "geography_level": "constituency", "geography_id": "E14001593" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001594", @@ -334318,7 +365382,9 @@ "geography_level": "constituency", "geography_id": "E14001594" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001595", @@ -334339,7 +365405,9 @@ "geography_level": "constituency", "geography_id": "E14001595" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001596", @@ -334360,7 +365428,9 @@ "geography_level": "constituency", "geography_id": "E14001596" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001597", @@ -334381,7 +365451,9 @@ "geography_level": "constituency", "geography_id": "E14001597" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001598", @@ -334402,7 +365474,9 @@ "geography_level": "constituency", "geography_id": "E14001598" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001599", @@ -334423,7 +365497,9 @@ "geography_level": "constituency", "geography_id": "E14001599" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001600", @@ -334444,7 +365520,9 @@ "geography_level": "constituency", "geography_id": "E14001600" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001601", @@ -334465,7 +365543,9 @@ "geography_level": "constituency", "geography_id": "E14001601" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001602", @@ -334486,7 +365566,9 @@ "geography_level": "constituency", "geography_id": "E14001602" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001603", @@ -334507,7 +365589,9 @@ "geography_level": "constituency", "geography_id": "E14001603" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001604", @@ -334528,7 +365612,9 @@ "geography_level": "constituency", "geography_id": "E14001604" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@E14001605", @@ -334549,7 +365635,9 @@ "geography_level": "constituency", "geography_id": "E14001605" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000021", @@ -334570,7 +365658,9 @@ "geography_level": "constituency", "geography_id": "S14000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000027", @@ -334591,7 +365681,9 @@ "geography_level": "constituency", "geography_id": "S14000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000045", @@ -334612,7 +365704,9 @@ "geography_level": "constituency", "geography_id": "S14000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000048", @@ -334633,7 +365727,9 @@ "geography_level": "constituency", "geography_id": "S14000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000051", @@ -334654,7 +365750,9 @@ "geography_level": "constituency", "geography_id": "S14000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000060", @@ -334675,7 +365773,9 @@ "geography_level": "constituency", "geography_id": "S14000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000061", @@ -334696,7 +365796,9 @@ "geography_level": "constituency", "geography_id": "S14000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000062", @@ -334717,7 +365819,9 @@ "geography_level": "constituency", "geography_id": "S14000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000063", @@ -334738,7 +365842,9 @@ "geography_level": "constituency", "geography_id": "S14000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000064", @@ -334759,7 +365865,9 @@ "geography_level": "constituency", "geography_id": "S14000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000065", @@ -334780,7 +365888,9 @@ "geography_level": "constituency", "geography_id": "S14000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000066", @@ -334801,7 +365911,9 @@ "geography_level": "constituency", "geography_id": "S14000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000067", @@ -334822,7 +365934,9 @@ "geography_level": "constituency", "geography_id": "S14000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000068", @@ -334843,7 +365957,9 @@ "geography_level": "constituency", "geography_id": "S14000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000069", @@ -334864,7 +365980,9 @@ "geography_level": "constituency", "geography_id": "S14000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000070", @@ -334885,7 +366003,9 @@ "geography_level": "constituency", "geography_id": "S14000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000071", @@ -334906,7 +366026,9 @@ "geography_level": "constituency", "geography_id": "S14000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000072", @@ -334927,7 +366049,9 @@ "geography_level": "constituency", "geography_id": "S14000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000073", @@ -334948,7 +366072,9 @@ "geography_level": "constituency", "geography_id": "S14000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000074", @@ -334969,7 +366095,9 @@ "geography_level": "constituency", "geography_id": "S14000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000075", @@ -334990,7 +366118,9 @@ "geography_level": "constituency", "geography_id": "S14000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000076", @@ -335011,7 +366141,9 @@ "geography_level": "constituency", "geography_id": "S14000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000077", @@ -335032,7 +366164,9 @@ "geography_level": "constituency", "geography_id": "S14000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000078", @@ -335053,7 +366187,9 @@ "geography_level": "constituency", "geography_id": "S14000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000079", @@ -335074,7 +366210,9 @@ "geography_level": "constituency", "geography_id": "S14000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000080", @@ -335095,7 +366233,9 @@ "geography_level": "constituency", "geography_id": "S14000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000081", @@ -335116,7 +366256,9 @@ "geography_level": "constituency", "geography_id": "S14000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000082", @@ -335137,7 +366279,9 @@ "geography_level": "constituency", "geography_id": "S14000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000083", @@ -335158,7 +366302,9 @@ "geography_level": "constituency", "geography_id": "S14000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000084", @@ -335179,7 +366325,9 @@ "geography_level": "constituency", "geography_id": "S14000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000085", @@ -335200,7 +366348,9 @@ "geography_level": "constituency", "geography_id": "S14000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000086", @@ -335221,7 +366371,9 @@ "geography_level": "constituency", "geography_id": "S14000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000087", @@ -335242,7 +366394,9 @@ "geography_level": "constituency", "geography_id": "S14000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000088", @@ -335263,7 +366417,9 @@ "geography_level": "constituency", "geography_id": "S14000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000089", @@ -335284,7 +366440,9 @@ "geography_level": "constituency", "geography_id": "S14000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000090", @@ -335305,7 +366463,9 @@ "geography_level": "constituency", "geography_id": "S14000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000091", @@ -335326,7 +366486,9 @@ "geography_level": "constituency", "geography_id": "S14000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000092", @@ -335347,7 +366509,9 @@ "geography_level": "constituency", "geography_id": "S14000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000093", @@ -335368,7 +366532,9 @@ "geography_level": "constituency", "geography_id": "S14000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000094", @@ -335389,7 +366555,9 @@ "geography_level": "constituency", "geography_id": "S14000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000095", @@ -335410,7 +366578,9 @@ "geography_level": "constituency", "geography_id": "S14000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000096", @@ -335431,7 +366601,9 @@ "geography_level": "constituency", "geography_id": "S14000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000097", @@ -335452,7 +366624,9 @@ "geography_level": "constituency", "geography_id": "S14000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000098", @@ -335473,7 +366647,9 @@ "geography_level": "constituency", "geography_id": "S14000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000099", @@ -335494,7 +366670,9 @@ "geography_level": "constituency", "geography_id": "S14000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000100", @@ -335515,7 +366693,9 @@ "geography_level": "constituency", "geography_id": "S14000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000101", @@ -335536,7 +366716,9 @@ "geography_level": "constituency", "geography_id": "S14000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000102", @@ -335557,7 +366739,9 @@ "geography_level": "constituency", "geography_id": "S14000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000103", @@ -335578,7 +366762,9 @@ "geography_level": "constituency", "geography_id": "S14000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000104", @@ -335599,7 +366785,9 @@ "geography_level": "constituency", "geography_id": "S14000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000105", @@ -335620,7 +366808,9 @@ "geography_level": "constituency", "geography_id": "S14000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000106", @@ -335641,7 +366831,9 @@ "geography_level": "constituency", "geography_id": "S14000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000107", @@ -335662,7 +366854,9 @@ "geography_level": "constituency", "geography_id": "S14000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000108", @@ -335683,7 +366877,9 @@ "geography_level": "constituency", "geography_id": "S14000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000109", @@ -335704,7 +366900,9 @@ "geography_level": "constituency", "geography_id": "S14000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000110", @@ -335725,7 +366923,9 @@ "geography_level": "constituency", "geography_id": "S14000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@S14000111", @@ -335746,7 +366946,9 @@ "geography_level": "constituency", "geography_id": "S14000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000081", @@ -335767,7 +366969,9 @@ "geography_level": "constituency", "geography_id": "W07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000082", @@ -335788,7 +366992,9 @@ "geography_level": "constituency", "geography_id": "W07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000083", @@ -335809,7 +367015,9 @@ "geography_level": "constituency", "geography_id": "W07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000084", @@ -335830,7 +367038,9 @@ "geography_level": "constituency", "geography_id": "W07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000085", @@ -335851,7 +367061,9 @@ "geography_level": "constituency", "geography_id": "W07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000086", @@ -335872,7 +367084,9 @@ "geography_level": "constituency", "geography_id": "W07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000087", @@ -335893,7 +367107,9 @@ "geography_level": "constituency", "geography_id": "W07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000088", @@ -335914,7 +367130,9 @@ "geography_level": "constituency", "geography_id": "W07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000089", @@ -335935,7 +367153,9 @@ "geography_level": "constituency", "geography_id": "W07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000090", @@ -335956,7 +367176,9 @@ "geography_level": "constituency", "geography_id": "W07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000091", @@ -335977,7 +367199,9 @@ "geography_level": "constituency", "geography_id": "W07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000092", @@ -335998,7 +367222,9 @@ "geography_level": "constituency", "geography_id": "W07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000093", @@ -336019,7 +367245,9 @@ "geography_level": "constituency", "geography_id": "W07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000094", @@ -336040,7 +367268,9 @@ "geography_level": "constituency", "geography_id": "W07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000095", @@ -336061,7 +367291,9 @@ "geography_level": "constituency", "geography_id": "W07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000096", @@ -336082,7 +367314,9 @@ "geography_level": "constituency", "geography_id": "W07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000097", @@ -336103,7 +367337,9 @@ "geography_level": "constituency", "geography_id": "W07000097" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000098", @@ -336124,7 +367360,9 @@ "geography_level": "constituency", "geography_id": "W07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000099", @@ -336145,7 +367383,9 @@ "geography_level": "constituency", "geography_id": "W07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000100", @@ -336166,7 +367406,9 @@ "geography_level": "constituency", "geography_id": "W07000100" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000101", @@ -336187,7 +367429,9 @@ "geography_level": "constituency", "geography_id": "W07000101" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000102", @@ -336208,7 +367452,9 @@ "geography_level": "constituency", "geography_id": "W07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000103", @@ -336229,7 +367475,9 @@ "geography_level": "constituency", "geography_id": "W07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000104", @@ -336250,7 +367498,9 @@ "geography_level": "constituency", "geography_id": "W07000104" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000105", @@ -336271,7 +367521,9 @@ "geography_level": "constituency", "geography_id": "W07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000106", @@ -336292,7 +367544,9 @@ "geography_level": "constituency", "geography_id": "W07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000107", @@ -336313,7 +367567,9 @@ "geography_level": "constituency", "geography_id": "W07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000108", @@ -336334,7 +367590,9 @@ "geography_level": "constituency", "geography_id": "W07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000109", @@ -336355,7 +367613,9 @@ "geography_level": "constituency", "geography_id": "W07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000110", @@ -336376,7 +367636,9 @@ "geography_level": "constituency", "geography_id": "W07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000111", @@ -336397,7 +367659,9 @@ "geography_level": "constituency", "geography_id": "W07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "dwp.uc.households_by_area_children_3plus@W07000112", @@ -336418,7 +367682,9 @@ "geography_level": "constituency", "geography_id": "W07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2025-05", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000001", @@ -336437,7 +367703,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000001" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000002", @@ -336456,7 +367724,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000002" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000003", @@ -336475,7 +367745,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000003" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000004", @@ -336494,7 +367766,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000004" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000005", @@ -336513,7 +367787,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000005" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000006", @@ -336532,7 +367808,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000006" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000007", @@ -336551,7 +367829,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000007" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000008", @@ -336570,7 +367850,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000009", @@ -336589,7 +367871,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000010", @@ -336608,7 +367892,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000011", @@ -336627,7 +367913,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000012", @@ -336646,7 +367934,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000012" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000013", @@ -336665,7 +367955,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000013" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000014", @@ -336684,7 +367976,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000014" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000015", @@ -336703,7 +367997,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000015" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000016", @@ -336722,7 +368018,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000016" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000017", @@ -336741,7 +368039,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000017" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000018", @@ -336760,7 +368060,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000018" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000019", @@ -336779,7 +368081,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000019" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000020", @@ -336798,7 +368102,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000020" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000021", @@ -336817,7 +368123,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000021" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000022", @@ -336836,7 +368144,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000022" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000023", @@ -336855,7 +368165,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000023" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000024", @@ -336874,7 +368186,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000024" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000025", @@ -336893,7 +368207,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000025" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000026", @@ -336912,7 +368228,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000026" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000027", @@ -336931,7 +368249,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000027" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000030", @@ -336950,7 +368270,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000030" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000031", @@ -336969,7 +368291,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000031" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000032", @@ -336988,7 +368312,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000032" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000033", @@ -337007,7 +368333,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000033" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000034", @@ -337026,7 +368354,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000034" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000035", @@ -337045,7 +368375,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000035" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000036", @@ -337064,7 +368396,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000036" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000037", @@ -337083,7 +368417,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000037" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000038", @@ -337102,7 +368438,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000038" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000039", @@ -337121,7 +368459,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000039" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000040", @@ -337140,7 +368480,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000040" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000041", @@ -337159,7 +368501,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000041" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000042", @@ -337178,7 +368522,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000042" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000043", @@ -337197,7 +368543,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000043" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000044", @@ -337216,7 +368564,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000044" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000045", @@ -337235,7 +368585,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000045" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000046", @@ -337254,7 +368606,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000046" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000047", @@ -337273,7 +368627,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000047" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000049", @@ -337292,7 +368648,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000049" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000050", @@ -337311,7 +368669,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000050" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000051", @@ -337330,7 +368690,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000051" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000052", @@ -337349,7 +368711,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000052" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000053", @@ -337368,7 +368732,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000053" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000054", @@ -337387,7 +368753,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000054" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000055", @@ -337406,7 +368774,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000055" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000056", @@ -337425,7 +368795,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000056" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000057", @@ -337444,7 +368816,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000057" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000058", @@ -337463,7 +368837,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000058" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000059", @@ -337482,7 +368858,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000059" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000060", @@ -337501,7 +368879,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000060" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000061", @@ -337520,7 +368900,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000061" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000062", @@ -337539,7 +368921,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000062" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000063", @@ -337558,7 +368942,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000063" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000064", @@ -337577,7 +368963,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000064" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000065", @@ -337596,7 +368984,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000065" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E06000066", @@ -337615,7 +369005,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000066" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000008", @@ -337634,7 +369026,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000009", @@ -337653,7 +369047,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000010", @@ -337672,7 +369068,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000011", @@ -337691,7 +369089,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000012", @@ -337710,7 +369110,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000012" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000032", @@ -337729,7 +369131,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000032" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000033", @@ -337748,7 +369152,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000033" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000034", @@ -337767,7 +369173,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000034" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000035", @@ -337786,7 +369194,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000035" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000036", @@ -337805,7 +369215,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000036" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000037", @@ -337824,7 +369236,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000037" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000038", @@ -337843,7 +369257,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000038" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000039", @@ -337862,7 +369278,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000039" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000040", @@ -337881,7 +369299,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000040" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000041", @@ -337900,7 +369320,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000041" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000042", @@ -337919,7 +369341,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000042" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000043", @@ -337938,7 +369362,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000043" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000044", @@ -337957,7 +369383,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000044" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000045", @@ -337976,7 +369404,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000045" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000046", @@ -337995,7 +369425,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000046" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000047", @@ -338014,7 +369446,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000047" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000061", @@ -338033,7 +369467,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000061" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000062", @@ -338052,7 +369488,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000062" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000063", @@ -338071,7 +369509,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000063" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000064", @@ -338090,7 +369530,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000064" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000065", @@ -338109,7 +369551,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000065" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000066", @@ -338128,7 +369572,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000066" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000067", @@ -338147,7 +369593,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000067" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000068", @@ -338166,7 +369614,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000068" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000069", @@ -338185,7 +369635,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000069" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000070", @@ -338204,7 +369656,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000070" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000071", @@ -338223,7 +369677,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000071" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000072", @@ -338242,7 +369698,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000072" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000073", @@ -338261,7 +369719,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000073" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000074", @@ -338280,7 +369740,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000074" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000075", @@ -338299,7 +369761,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000075" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000076", @@ -338318,7 +369782,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000076" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000077", @@ -338337,7 +369803,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000077" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000078", @@ -338356,7 +369824,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000078" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000079", @@ -338375,7 +369845,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000079" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000080", @@ -338394,7 +369866,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000080" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000081", @@ -338413,7 +369887,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000081" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000082", @@ -338432,7 +369908,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000082" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000083", @@ -338451,7 +369929,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000083" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000084", @@ -338470,7 +369950,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000084" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000085", @@ -338489,7 +369971,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000085" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000086", @@ -338508,7 +369992,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000086" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000087", @@ -338527,7 +370013,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000087" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000088", @@ -338546,7 +370034,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000088" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000089", @@ -338565,7 +370055,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000089" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000090", @@ -338584,7 +370076,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000090" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000091", @@ -338603,7 +370097,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000091" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000092", @@ -338622,7 +370118,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000092" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000093", @@ -338641,7 +370139,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000093" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000094", @@ -338660,7 +370160,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000094" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000095", @@ -338679,7 +370181,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000095" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000096", @@ -338698,7 +370202,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000096" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000098", @@ -338717,7 +370223,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000098" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000099", @@ -338736,7 +370244,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000099" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000102", @@ -338755,7 +370265,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000102" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000103", @@ -338774,7 +370286,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000103" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000105", @@ -338793,7 +370307,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000105" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000106", @@ -338812,7 +370328,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000106" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000107", @@ -338831,7 +370349,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000107" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000108", @@ -338850,7 +370370,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000108" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000109", @@ -338869,7 +370391,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000109" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000110", @@ -338888,7 +370412,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000110" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000111", @@ -338907,7 +370433,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000111" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000112", @@ -338926,7 +370454,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000112" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000113", @@ -338945,7 +370475,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000113" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000114", @@ -338964,7 +370496,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000114" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000115", @@ -338983,7 +370517,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000115" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000116", @@ -339002,7 +370538,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000116" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000117", @@ -339021,7 +370559,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000117" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000118", @@ -339040,7 +370580,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000118" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000119", @@ -339059,7 +370601,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000119" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000120", @@ -339078,7 +370622,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000120" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000121", @@ -339097,7 +370643,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000121" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000122", @@ -339116,7 +370664,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000122" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000123", @@ -339135,7 +370685,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000123" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000124", @@ -339154,7 +370706,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000124" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000125", @@ -339173,7 +370727,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000125" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000126", @@ -339192,7 +370748,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000126" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000127", @@ -339211,7 +370769,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000127" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000128", @@ -339230,7 +370790,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000128" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000129", @@ -339249,7 +370811,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000129" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000130", @@ -339268,7 +370832,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000130" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000131", @@ -339287,7 +370853,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000131" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000132", @@ -339306,7 +370874,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000132" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000133", @@ -339325,7 +370895,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000133" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000134", @@ -339344,7 +370916,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000134" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000135", @@ -339363,7 +370937,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000135" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000136", @@ -339382,7 +370958,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000136" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000137", @@ -339401,7 +370979,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000137" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000138", @@ -339420,7 +371000,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000138" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000139", @@ -339439,7 +371021,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000139" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000140", @@ -339458,7 +371042,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000140" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000141", @@ -339477,7 +371063,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000141" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000142", @@ -339496,7 +371084,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000142" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000143", @@ -339515,7 +371105,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000143" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000144", @@ -339534,7 +371126,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000144" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000145", @@ -339553,7 +371147,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000145" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000146", @@ -339572,7 +371168,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000146" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000147", @@ -339591,7 +371189,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000147" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000148", @@ -339610,7 +371210,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000148" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000149", @@ -339629,7 +371231,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000149" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000170", @@ -339648,7 +371252,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000170" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000171", @@ -339667,7 +371273,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000171" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000172", @@ -339686,7 +371294,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000172" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000173", @@ -339705,7 +371315,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000173" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000174", @@ -339724,7 +371336,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000174" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000175", @@ -339743,7 +371357,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000175" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000176", @@ -339762,7 +371378,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000176" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000177", @@ -339781,7 +371399,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000177" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000178", @@ -339800,7 +371420,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000178" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000179", @@ -339819,7 +371441,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000179" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000180", @@ -339838,7 +371462,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000180" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000181", @@ -339857,7 +371483,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000181" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000192", @@ -339876,7 +371504,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000192" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000193", @@ -339895,7 +371525,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000193" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000194", @@ -339914,7 +371546,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000194" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000195", @@ -339933,7 +371567,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000195" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000196", @@ -339952,7 +371588,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000196" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000197", @@ -339971,7 +371609,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000197" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000198", @@ -339990,7 +371630,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000198" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000199", @@ -340009,7 +371651,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000199" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000200", @@ -340028,7 +371672,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000200" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000202", @@ -340047,7 +371693,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000202" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000203", @@ -340066,7 +371714,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000203" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000207", @@ -340085,7 +371735,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000207" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000208", @@ -340104,7 +371756,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000208" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000209", @@ -340123,7 +371777,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000209" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000210", @@ -340142,7 +371798,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000210" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000211", @@ -340161,7 +371819,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000211" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000212", @@ -340180,7 +371840,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000212" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000213", @@ -340199,7 +371861,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000213" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000214", @@ -340218,7 +371882,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000214" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000215", @@ -340237,7 +371903,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000215" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000216", @@ -340256,7 +371924,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000216" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000217", @@ -340275,7 +371945,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000217" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000218", @@ -340294,7 +371966,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000218" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000219", @@ -340313,7 +371987,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000219" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000220", @@ -340332,7 +372008,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000220" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000221", @@ -340351,7 +372029,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000221" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000222", @@ -340370,7 +372050,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000222" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000223", @@ -340389,7 +372071,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000223" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000224", @@ -340408,7 +372092,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000224" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000225", @@ -340427,7 +372113,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000225" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000226", @@ -340446,7 +372134,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000226" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000227", @@ -340465,7 +372155,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000227" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000228", @@ -340484,7 +372176,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000228" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000229", @@ -340503,7 +372197,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000229" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000234", @@ -340522,7 +372218,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000234" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000235", @@ -340541,7 +372239,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000235" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000236", @@ -340560,7 +372260,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000236" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000237", @@ -340579,7 +372281,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000237" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000238", @@ -340598,7 +372302,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000238" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000239", @@ -340617,7 +372323,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000239" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000240", @@ -340636,7 +372344,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000240" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000241", @@ -340655,7 +372365,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000241" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000242", @@ -340674,7 +372386,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000242" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000243", @@ -340693,7 +372407,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000243" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000244", @@ -340712,7 +372428,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000244" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E07000245", @@ -340731,7 +372449,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000245" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000001", @@ -340750,7 +372470,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000001" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000002", @@ -340769,7 +372491,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000002" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000003", @@ -340788,7 +372512,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000003" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000004", @@ -340807,7 +372533,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000004" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000005", @@ -340826,7 +372554,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000005" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000006", @@ -340845,7 +372575,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000006" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000007", @@ -340864,7 +372596,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000007" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000008", @@ -340883,7 +372617,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000009", @@ -340902,7 +372638,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000010", @@ -340921,7 +372659,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000011", @@ -340940,7 +372680,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000012", @@ -340959,7 +372701,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000012" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000013", @@ -340978,7 +372722,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000013" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000014", @@ -340997,7 +372743,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000014" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000015", @@ -341016,7 +372764,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000015" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000016", @@ -341035,7 +372785,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000016" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000017", @@ -341054,7 +372806,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000017" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000018", @@ -341073,7 +372827,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000018" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000019", @@ -341092,7 +372848,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000019" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000021", @@ -341111,7 +372869,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000021" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000022", @@ -341130,7 +372890,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000022" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000023", @@ -341149,7 +372911,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000023" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000024", @@ -341168,7 +372932,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000024" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000025", @@ -341187,7 +372953,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000025" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000026", @@ -341206,7 +372974,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000026" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000027", @@ -341225,7 +372995,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000027" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000028", @@ -341244,7 +373016,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000028" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000029", @@ -341263,7 +373037,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000029" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000030", @@ -341282,7 +373058,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000030" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000031", @@ -341301,7 +373079,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000031" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000032", @@ -341320,7 +373100,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000032" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000033", @@ -341339,7 +373121,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000033" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000034", @@ -341358,7 +373142,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000034" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000035", @@ -341377,7 +373163,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000035" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000036", @@ -341396,7 +373184,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000036" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E08000037", @@ -341415,7 +373205,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000037" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000001", @@ -341434,7 +373226,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000001" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000002", @@ -341453,7 +373247,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000002" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000003", @@ -341472,7 +373268,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000003" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000004", @@ -341491,7 +373289,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000004" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000005", @@ -341510,7 +373310,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000005" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000006", @@ -341529,7 +373331,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000006" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000007", @@ -341548,7 +373352,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000007" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000008", @@ -341567,7 +373373,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000009", @@ -341586,7 +373394,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000010", @@ -341605,7 +373415,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000011", @@ -341624,7 +373436,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000012", @@ -341643,7 +373457,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000012" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000013", @@ -341662,7 +373478,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000013" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000014", @@ -341681,7 +373499,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000014" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000015", @@ -341700,7 +373520,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000015" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000016", @@ -341719,7 +373541,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000016" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000017", @@ -341738,7 +373562,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000017" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000018", @@ -341757,7 +373583,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000018" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000019", @@ -341776,7 +373604,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000019" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000020", @@ -341795,7 +373625,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000020" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000021", @@ -341814,7 +373646,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000021" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000022", @@ -341833,7 +373667,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000022" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000023", @@ -341852,7 +373688,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000023" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000024", @@ -341871,7 +373709,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000024" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000025", @@ -341890,7 +373730,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000025" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000026", @@ -341909,7 +373751,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000026" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000027", @@ -341928,7 +373772,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000027" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000028", @@ -341947,7 +373793,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000028" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000029", @@ -341966,7 +373814,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000029" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000030", @@ -341985,7 +373835,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000030" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000031", @@ -342004,7 +373856,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000031" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000032", @@ -342023,7 +373877,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000032" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@E09000033", @@ -342042,7 +373898,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000033" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000001", @@ -342061,7 +373919,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000001" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000002", @@ -342080,7 +373940,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000002" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000003", @@ -342099,7 +373961,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000003" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000004", @@ -342118,7 +373982,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000004" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000005", @@ -342137,7 +374003,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000005" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000006", @@ -342156,7 +374024,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000006" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000007", @@ -342175,7 +374045,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000007" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000008", @@ -342194,7 +374066,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000009", @@ -342213,7 +374087,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000010", @@ -342232,7 +374108,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@N09000011", @@ -342251,7 +374129,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000005", @@ -342270,7 +374150,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000005" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000006", @@ -342289,7 +374171,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000006" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000008", @@ -342308,7 +374192,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000008" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000010", @@ -342327,7 +374213,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000010" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000011", @@ -342346,7 +374234,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000011" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000013", @@ -342365,7 +374255,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000013" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000014", @@ -342384,7 +374276,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000014" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000017", @@ -342403,7 +374297,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000017" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000018", @@ -342422,7 +374318,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000018" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000019", @@ -342441,7 +374339,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000019" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000020", @@ -342460,7 +374360,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000020" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000021", @@ -342479,7 +374381,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000021" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000023", @@ -342498,7 +374402,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000023" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000026", @@ -342517,7 +374423,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000026" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000027", @@ -342536,7 +374444,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000027" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000028", @@ -342555,7 +374465,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000028" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000029", @@ -342574,7 +374486,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000029" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000030", @@ -342593,7 +374507,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000030" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000033", @@ -342612,7 +374528,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000033" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000034", @@ -342631,7 +374549,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000034" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000035", @@ -342650,7 +374570,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000035" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000036", @@ -342669,7 +374591,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000036" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000038", @@ -342688,7 +374612,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000038" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000039", @@ -342707,7 +374633,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000039" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000040", @@ -342726,7 +374654,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000040" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000041", @@ -342745,7 +374675,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000041" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000042", @@ -342764,7 +374696,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000042" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000045", @@ -342783,7 +374717,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000045" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000047", @@ -342802,7 +374738,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000047" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000048", @@ -342821,7 +374759,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000048" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000049", @@ -342840,7 +374780,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000049" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@S12000050", @@ -342859,7 +374801,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000050" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000001", @@ -342878,7 +374822,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000001" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000002", @@ -342897,7 +374843,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000002" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000003", @@ -342916,7 +374864,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000003" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000004", @@ -342935,7 +374885,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000004" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000005", @@ -342954,7 +374906,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000005" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000006", @@ -342973,7 +374927,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000006" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000008", @@ -342992,7 +374948,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000009", @@ -343011,7 +374969,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000010", @@ -343030,7 +374990,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000011", @@ -343049,7 +375011,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000012", @@ -343068,7 +375032,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000012" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000013", @@ -343087,7 +375053,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000013" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000014", @@ -343106,7 +375074,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000014" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000015", @@ -343125,7 +375095,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000015" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000016", @@ -343144,7 +375116,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000016" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000018", @@ -343163,7 +375137,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000018" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000019", @@ -343182,7 +375158,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000019" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000020", @@ -343201,7 +375179,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000020" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000021", @@ -343220,7 +375200,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000021" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000022", @@ -343239,7 +375221,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000022" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000023", @@ -343258,7 +375242,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000023" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_outright@W06000024", @@ -343277,7 +375263,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000024" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000001", @@ -343296,7 +375284,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000001" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000002", @@ -343315,7 +375305,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000002" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000003", @@ -343334,7 +375326,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000003" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000004", @@ -343353,7 +375347,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000004" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000005", @@ -343372,7 +375368,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000005" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000006", @@ -343391,7 +375389,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000006" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000007", @@ -343410,7 +375410,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000007" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000008", @@ -343429,7 +375431,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000009", @@ -343448,7 +375452,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000010", @@ -343467,7 +375473,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000011", @@ -343486,7 +375494,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000012", @@ -343505,7 +375515,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000012" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000013", @@ -343524,7 +375536,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000013" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000014", @@ -343543,7 +375557,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000014" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000015", @@ -343562,7 +375578,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000015" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000016", @@ -343581,7 +375599,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000016" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000017", @@ -343600,7 +375620,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000017" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000018", @@ -343619,7 +375641,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000018" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000019", @@ -343638,7 +375662,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000019" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000020", @@ -343657,7 +375683,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000020" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000021", @@ -343676,7 +375704,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000021" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000022", @@ -343695,7 +375725,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000022" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000023", @@ -343714,7 +375746,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000023" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000024", @@ -343733,7 +375767,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000024" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000025", @@ -343752,7 +375788,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000025" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000026", @@ -343771,7 +375809,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000026" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000027", @@ -343790,7 +375830,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000027" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000030", @@ -343809,7 +375851,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000030" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000031", @@ -343828,7 +375872,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000031" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000032", @@ -343847,7 +375893,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000032" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000033", @@ -343866,7 +375914,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000033" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000034", @@ -343885,7 +375935,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000034" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000035", @@ -343904,7 +375956,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000035" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000036", @@ -343923,7 +375977,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000036" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000037", @@ -343942,7 +375998,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000037" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000038", @@ -343961,7 +376019,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000038" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000039", @@ -343980,7 +376040,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000039" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000040", @@ -343999,7 +376061,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000040" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000041", @@ -344018,7 +376082,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000041" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000042", @@ -344037,7 +376103,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000042" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000043", @@ -344056,7 +376124,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000043" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000044", @@ -344075,7 +376145,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000044" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000045", @@ -344094,7 +376166,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000045" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000046", @@ -344113,7 +376187,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000046" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000047", @@ -344132,7 +376208,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000047" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000049", @@ -344151,7 +376229,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000049" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000050", @@ -344170,7 +376250,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000050" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000051", @@ -344189,7 +376271,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000051" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000052", @@ -344208,7 +376292,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000052" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000053", @@ -344227,7 +376313,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000053" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000054", @@ -344246,7 +376334,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000054" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000055", @@ -344265,7 +376355,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000055" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000056", @@ -344284,7 +376376,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000056" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000057", @@ -344303,7 +376397,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000057" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000058", @@ -344322,7 +376418,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000058" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000059", @@ -344341,7 +376439,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000059" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000060", @@ -344360,7 +376460,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000060" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000061", @@ -344379,7 +376481,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000061" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000062", @@ -344398,7 +376502,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000062" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000063", @@ -344417,7 +376523,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000063" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000064", @@ -344436,7 +376544,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000064" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000065", @@ -344455,7 +376565,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000065" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E06000066", @@ -344474,7 +376586,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E06000066" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000008", @@ -344493,7 +376607,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000009", @@ -344512,7 +376628,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000010", @@ -344531,7 +376649,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000011", @@ -344550,7 +376670,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000012", @@ -344569,7 +376691,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000012" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000032", @@ -344588,7 +376712,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000032" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000033", @@ -344607,7 +376733,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000033" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000034", @@ -344626,7 +376754,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000034" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000035", @@ -344645,7 +376775,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000035" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000036", @@ -344664,7 +376796,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000036" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000037", @@ -344683,7 +376817,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000037" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000038", @@ -344702,7 +376838,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000038" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000039", @@ -344721,7 +376859,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000039" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000040", @@ -344740,7 +376880,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000040" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000041", @@ -344759,7 +376901,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000041" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000042", @@ -344778,7 +376922,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000042" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000043", @@ -344797,7 +376943,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000043" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000044", @@ -344816,7 +376964,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000044" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000045", @@ -344835,7 +376985,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000045" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000046", @@ -344854,7 +377006,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000046" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000047", @@ -344873,7 +377027,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000047" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000061", @@ -344892,7 +377048,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000061" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000062", @@ -344911,7 +377069,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000062" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000063", @@ -344930,7 +377090,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000063" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000064", @@ -344949,7 +377111,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000064" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000065", @@ -344968,7 +377132,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000065" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000066", @@ -344987,7 +377153,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000066" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000067", @@ -345006,7 +377174,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000067" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000068", @@ -345025,7 +377195,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000068" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000069", @@ -345044,7 +377216,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000069" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000070", @@ -345063,7 +377237,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000070" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000071", @@ -345082,7 +377258,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000071" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000072", @@ -345101,7 +377279,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000072" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000073", @@ -345120,7 +377300,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000073" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000074", @@ -345139,7 +377321,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000074" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000075", @@ -345158,7 +377342,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000075" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000076", @@ -345177,7 +377363,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000076" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000077", @@ -345196,7 +377384,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000077" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000078", @@ -345215,7 +377405,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000078" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000079", @@ -345234,7 +377426,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000079" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000080", @@ -345253,7 +377447,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000080" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000081", @@ -345272,7 +377468,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000081" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000082", @@ -345291,7 +377489,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000082" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000083", @@ -345310,7 +377510,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000083" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000084", @@ -345329,7 +377531,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000084" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000085", @@ -345348,7 +377552,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000085" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000086", @@ -345367,7 +377573,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000086" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000087", @@ -345386,7 +377594,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000087" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000088", @@ -345405,7 +377615,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000088" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000089", @@ -345424,7 +377636,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000089" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000090", @@ -345443,7 +377657,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000090" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000091", @@ -345462,7 +377678,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000091" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000092", @@ -345481,7 +377699,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000092" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000093", @@ -345500,7 +377720,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000093" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000094", @@ -345519,7 +377741,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000094" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000095", @@ -345538,7 +377762,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000095" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000096", @@ -345557,7 +377783,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000096" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000098", @@ -345576,7 +377804,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000098" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000099", @@ -345595,7 +377825,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000099" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000102", @@ -345614,7 +377846,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000102" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000103", @@ -345633,7 +377867,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000103" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000105", @@ -345652,7 +377888,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000105" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000106", @@ -345671,7 +377909,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000106" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000107", @@ -345690,7 +377930,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000107" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000108", @@ -345709,7 +377951,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000108" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000109", @@ -345728,7 +377972,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000109" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000110", @@ -345747,7 +377993,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000110" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000111", @@ -345766,7 +378014,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000111" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000112", @@ -345785,7 +378035,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000112" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000113", @@ -345804,7 +378056,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000113" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000114", @@ -345823,7 +378077,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000114" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000115", @@ -345842,7 +378098,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000115" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000116", @@ -345861,7 +378119,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000116" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000117", @@ -345880,7 +378140,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000117" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000118", @@ -345899,7 +378161,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000118" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000119", @@ -345918,7 +378182,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000119" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000120", @@ -345937,7 +378203,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000120" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000121", @@ -345956,7 +378224,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000121" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000122", @@ -345975,7 +378245,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000122" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000123", @@ -345994,7 +378266,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000123" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000124", @@ -346013,7 +378287,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000124" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000125", @@ -346032,7 +378308,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000125" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000126", @@ -346051,7 +378329,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000126" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000127", @@ -346070,7 +378350,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000127" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000128", @@ -346089,7 +378371,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000128" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000129", @@ -346108,7 +378392,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000129" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000130", @@ -346127,7 +378413,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000130" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000131", @@ -346146,7 +378434,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000131" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000132", @@ -346165,7 +378455,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000132" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000133", @@ -346184,7 +378476,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000133" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000134", @@ -346203,7 +378497,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000134" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000135", @@ -346222,7 +378518,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000135" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000136", @@ -346241,7 +378539,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000136" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000137", @@ -346260,7 +378560,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000137" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000138", @@ -346279,7 +378581,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000138" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000139", @@ -346298,7 +378602,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000139" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000140", @@ -346317,7 +378623,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000140" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000141", @@ -346336,7 +378644,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000141" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000142", @@ -346355,7 +378665,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000142" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000143", @@ -346374,7 +378686,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000143" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000144", @@ -346393,7 +378707,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000144" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000145", @@ -346412,7 +378728,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000145" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000146", @@ -346431,7 +378749,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000146" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000147", @@ -346450,7 +378770,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000147" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000148", @@ -346469,7 +378791,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000148" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000149", @@ -346488,7 +378812,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000149" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000170", @@ -346507,7 +378833,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000170" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000171", @@ -346526,7 +378854,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000171" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000172", @@ -346545,7 +378875,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000172" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000173", @@ -346564,7 +378896,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000173" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000174", @@ -346583,7 +378917,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000174" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000175", @@ -346602,7 +378938,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000175" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000176", @@ -346621,7 +378959,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000176" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000177", @@ -346640,7 +378980,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000177" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000178", @@ -346659,7 +379001,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000178" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000179", @@ -346678,7 +379022,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000179" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000180", @@ -346697,7 +379043,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000180" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000181", @@ -346716,7 +379064,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000181" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000192", @@ -346735,7 +379085,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000192" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000193", @@ -346754,7 +379106,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000193" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000194", @@ -346773,7 +379127,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000194" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000195", @@ -346792,7 +379148,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000195" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000196", @@ -346811,7 +379169,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000196" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000197", @@ -346830,7 +379190,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000197" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000198", @@ -346849,7 +379211,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000198" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000199", @@ -346868,7 +379232,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000199" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000200", @@ -346887,7 +379253,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000200" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000202", @@ -346906,7 +379274,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000202" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000203", @@ -346925,7 +379295,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000203" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000207", @@ -346944,7 +379316,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000207" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000208", @@ -346963,7 +379337,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000208" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000209", @@ -346982,7 +379358,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000209" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000210", @@ -347001,7 +379379,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000210" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000211", @@ -347020,7 +379400,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000211" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000212", @@ -347039,7 +379421,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000212" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000213", @@ -347058,7 +379442,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000213" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000214", @@ -347077,7 +379463,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000214" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000215", @@ -347096,7 +379484,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000215" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000216", @@ -347115,7 +379505,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000216" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000217", @@ -347134,7 +379526,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000217" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000218", @@ -347153,7 +379547,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000218" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000219", @@ -347172,7 +379568,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000219" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000220", @@ -347191,7 +379589,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000220" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000221", @@ -347210,7 +379610,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000221" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000222", @@ -347229,7 +379631,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000222" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000223", @@ -347248,7 +379652,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000223" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000224", @@ -347267,7 +379673,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000224" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000225", @@ -347286,7 +379694,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000225" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000226", @@ -347305,7 +379715,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000226" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000227", @@ -347324,7 +379736,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000227" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000228", @@ -347343,7 +379757,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000228" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000229", @@ -347362,7 +379778,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000229" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000234", @@ -347381,7 +379799,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000234" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000235", @@ -347400,7 +379820,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000235" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000236", @@ -347419,7 +379841,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000236" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000237", @@ -347438,7 +379862,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000237" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000238", @@ -347457,7 +379883,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000238" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000239", @@ -347476,7 +379904,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000239" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000240", @@ -347495,7 +379925,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000240" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000241", @@ -347514,7 +379946,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000241" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000242", @@ -347533,7 +379967,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000242" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000243", @@ -347552,7 +379988,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000243" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000244", @@ -347571,7 +380009,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000244" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E07000245", @@ -347590,7 +380030,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E07000245" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000001", @@ -347609,7 +380051,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000001" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000002", @@ -347628,7 +380072,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000002" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000003", @@ -347647,7 +380093,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000003" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000004", @@ -347666,7 +380114,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000004" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000005", @@ -347685,7 +380135,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000005" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000006", @@ -347704,7 +380156,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000006" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000007", @@ -347723,7 +380177,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000007" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000008", @@ -347742,7 +380198,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000009", @@ -347761,7 +380219,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000010", @@ -347780,7 +380240,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000011", @@ -347799,7 +380261,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000012", @@ -347818,7 +380282,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000012" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000013", @@ -347837,7 +380303,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000013" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000014", @@ -347856,7 +380324,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000014" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000015", @@ -347875,7 +380345,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000015" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000016", @@ -347894,7 +380366,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000016" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000017", @@ -347913,7 +380387,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000017" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000018", @@ -347932,7 +380408,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000018" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000019", @@ -347951,7 +380429,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000019" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000021", @@ -347970,7 +380450,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000021" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000022", @@ -347989,7 +380471,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000022" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000023", @@ -348008,7 +380492,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000023" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000024", @@ -348027,7 +380513,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000024" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000025", @@ -348046,7 +380534,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000025" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000026", @@ -348065,7 +380555,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000026" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000027", @@ -348084,7 +380576,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000027" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000028", @@ -348103,7 +380597,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000028" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000029", @@ -348122,7 +380618,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000029" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000030", @@ -348141,7 +380639,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000030" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000031", @@ -348160,7 +380660,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000031" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000032", @@ -348179,7 +380681,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000032" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000033", @@ -348198,7 +380702,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000033" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000034", @@ -348217,7 +380723,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000034" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000035", @@ -348236,7 +380744,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000035" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000036", @@ -348255,7 +380765,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000036" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E08000037", @@ -348274,7 +380786,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E08000037" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000001", @@ -348293,7 +380807,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000001" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000002", @@ -348312,7 +380828,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000002" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000003", @@ -348331,7 +380849,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000003" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000004", @@ -348350,7 +380870,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000004" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000005", @@ -348369,7 +380891,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000005" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000006", @@ -348388,7 +380912,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000006" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000007", @@ -348407,7 +380933,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000007" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000008", @@ -348426,7 +380954,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000009", @@ -348445,7 +380975,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000010", @@ -348464,7 +380996,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000011", @@ -348483,7 +381017,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000012", @@ -348502,7 +381038,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000012" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000013", @@ -348521,7 +381059,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000013" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000014", @@ -348540,7 +381080,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000014" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000015", @@ -348559,7 +381101,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000015" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000016", @@ -348578,7 +381122,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000016" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000017", @@ -348597,7 +381143,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000017" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000018", @@ -348616,7 +381164,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000018" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000019", @@ -348635,7 +381185,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000019" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000020", @@ -348654,7 +381206,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000020" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000021", @@ -348673,7 +381227,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000021" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000022", @@ -348692,7 +381248,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000022" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000023", @@ -348711,7 +381269,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000023" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000024", @@ -348730,7 +381290,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000024" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000025", @@ -348749,7 +381311,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000025" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000026", @@ -348768,7 +381332,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000026" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000027", @@ -348787,7 +381353,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000027" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000028", @@ -348806,7 +381374,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000028" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000029", @@ -348825,7 +381395,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000029" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000030", @@ -348844,7 +381416,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000030" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000031", @@ -348863,7 +381437,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000031" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000032", @@ -348882,7 +381458,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000032" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@E09000033", @@ -348901,7 +381479,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "E09000033" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000001", @@ -348920,7 +381500,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000001" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000002", @@ -348939,7 +381521,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000002" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000003", @@ -348958,7 +381542,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000003" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000004", @@ -348977,7 +381563,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000004" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000005", @@ -348996,7 +381584,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000005" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000006", @@ -349015,7 +381605,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000006" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000007", @@ -349034,7 +381626,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000007" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000008", @@ -349053,7 +381647,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000009", @@ -349072,7 +381668,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000010", @@ -349091,7 +381689,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@N09000011", @@ -349110,7 +381710,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "N09000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000005", @@ -349129,7 +381731,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000005" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000006", @@ -349148,7 +381752,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000006" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000008", @@ -349167,7 +381773,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000008" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000010", @@ -349186,7 +381794,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000010" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000011", @@ -349205,7 +381815,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000011" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000013", @@ -349224,7 +381836,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000013" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000014", @@ -349243,7 +381857,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000014" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000017", @@ -349262,7 +381878,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000017" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000018", @@ -349281,7 +381899,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000018" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000019", @@ -349300,7 +381920,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000019" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000020", @@ -349319,7 +381941,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000020" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000021", @@ -349338,7 +381962,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000021" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000023", @@ -349357,7 +381983,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000023" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000026", @@ -349376,7 +382004,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000026" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000027", @@ -349395,7 +382025,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000027" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000028", @@ -349414,7 +382046,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000028" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000029", @@ -349433,7 +382067,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000029" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000030", @@ -349452,7 +382088,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000030" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000033", @@ -349471,7 +382109,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000033" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000034", @@ -349490,7 +382130,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000034" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000035", @@ -349509,7 +382151,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000035" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000036", @@ -349528,7 +382172,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000036" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000038", @@ -349547,7 +382193,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000038" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000039", @@ -349566,7 +382214,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000039" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000040", @@ -349585,7 +382235,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000040" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000041", @@ -349604,7 +382256,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000041" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000042", @@ -349623,7 +382277,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000042" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000045", @@ -349642,7 +382298,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000045" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000047", @@ -349661,7 +382319,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000047" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000048", @@ -349680,7 +382340,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000048" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000049", @@ -349699,7 +382361,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000049" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@S12000050", @@ -349718,7 +382382,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "S12000050" - } + }, + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000001", @@ -349737,7 +382403,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000001" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000002", @@ -349756,7 +382424,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000002" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000003", @@ -349775,7 +382445,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000003" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000004", @@ -349794,7 +382466,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000004" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000005", @@ -349813,7 +382487,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000005" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000006", @@ -349832,7 +382508,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000006" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000008", @@ -349851,7 +382529,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000008" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000009", @@ -349870,7 +382550,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000009" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000010", @@ -349889,7 +382571,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000010" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000011", @@ -349908,7 +382592,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000011" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000012", @@ -349927,7 +382613,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000012" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000013", @@ -349946,7 +382634,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000013" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000014", @@ -349965,7 +382655,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000014" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000015", @@ -349984,7 +382676,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000015" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000016", @@ -350003,7 +382697,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000016" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000018", @@ -350022,7 +382718,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000018" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000019", @@ -350041,7 +382739,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000019" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000020", @@ -350060,7 +382760,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000020" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000021", @@ -350079,7 +382781,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000021" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000022", @@ -350098,7 +382802,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000022" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000023", @@ -350117,7 +382823,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000023" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.owned_mortgage@W06000024", @@ -350136,7 +382844,9 @@ "measure_kind": "prepared_column", "geography_level": "local_authority", "geography_id": "W06000024" - } + }, + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000001", @@ -350156,7 +382866,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000002", @@ -350176,7 +382888,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000003", @@ -350196,7 +382910,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000004", @@ -350216,7 +382932,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000005", @@ -350236,7 +382954,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000006", @@ -350256,7 +382976,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000007", @@ -350276,7 +382998,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000008", @@ -350296,7 +383020,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000009", @@ -350316,7 +383042,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000010", @@ -350336,7 +383064,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000011", @@ -350356,7 +383086,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000012", @@ -350376,7 +383108,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000013", @@ -350396,7 +383130,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000014", @@ -350416,7 +383152,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000015", @@ -350436,7 +383174,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000016", @@ -350456,7 +383196,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000017", @@ -350476,7 +383218,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000018", @@ -350496,7 +383240,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000019", @@ -350516,7 +383262,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000020", @@ -350536,7 +383284,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000021", @@ -350556,7 +383306,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000022", @@ -350576,7 +383328,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000023", @@ -350596,7 +383350,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000024", @@ -350616,7 +383372,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000025", @@ -350636,7 +383394,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000026", @@ -350656,7 +383416,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000027", @@ -350676,7 +383438,9 @@ "geography_level": "local_authority", "geography_id": "E06000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000030", @@ -350696,7 +383460,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000031", @@ -350716,7 +383482,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000032", @@ -350736,7 +383504,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000033", @@ -350756,7 +383526,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000034", @@ -350776,7 +383548,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000035", @@ -350796,7 +383570,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000036", @@ -350816,7 +383592,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000037", @@ -350836,7 +383614,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000038", @@ -350856,7 +383636,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000039", @@ -350876,7 +383658,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000040", @@ -350896,7 +383680,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000041", @@ -350916,7 +383702,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000042", @@ -350936,7 +383724,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000043", @@ -350956,7 +383746,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000044", @@ -350976,7 +383768,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000045", @@ -350996,7 +383790,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000046", @@ -351016,7 +383812,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000047", @@ -351036,7 +383834,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000049", @@ -351056,7 +383856,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000050", @@ -351076,7 +383878,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000051", @@ -351096,7 +383900,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000052", @@ -351116,7 +383922,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000053", @@ -351136,7 +383944,9 @@ "geography_level": "local_authority", "geography_id": "E06000053" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000054", @@ -351156,7 +383966,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000055", @@ -351176,7 +383988,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000056", @@ -351196,7 +384010,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000057", @@ -351216,7 +384032,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000058", @@ -351236,7 +384054,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000059", @@ -351256,7 +384076,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000060", @@ -351276,7 +384098,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000061", @@ -351296,7 +384120,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000062", @@ -351316,7 +384142,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000063", @@ -351336,7 +384164,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000064", @@ -351356,7 +384186,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000065", @@ -351376,7 +384208,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E06000066", @@ -351396,7 +384230,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000008", @@ -351416,7 +384252,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000009", @@ -351436,7 +384274,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000010", @@ -351456,7 +384296,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000011", @@ -351476,7 +384318,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000012", @@ -351496,7 +384340,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000032", @@ -351516,7 +384362,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000033", @@ -351536,7 +384384,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000034", @@ -351556,7 +384406,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000035", @@ -351576,7 +384428,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000036", @@ -351596,7 +384450,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000037", @@ -351616,7 +384472,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000038", @@ -351636,7 +384494,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000039", @@ -351656,7 +384516,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000040", @@ -351676,7 +384538,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000041", @@ -351696,7 +384560,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000042", @@ -351716,7 +384582,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000043", @@ -351736,7 +384604,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000044", @@ -351756,7 +384626,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000045", @@ -351776,7 +384648,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000046", @@ -351796,7 +384670,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000047", @@ -351816,7 +384692,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000061", @@ -351836,7 +384714,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000062", @@ -351856,7 +384736,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000063", @@ -351876,7 +384758,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000064", @@ -351896,7 +384780,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000065", @@ -351916,7 +384802,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000066", @@ -351936,7 +384824,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000067", @@ -351956,7 +384846,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000068", @@ -351976,7 +384868,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000069", @@ -351996,7 +384890,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000070", @@ -352016,7 +384912,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000071", @@ -352036,7 +384934,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000072", @@ -352056,7 +384956,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000073", @@ -352076,7 +384978,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000074", @@ -352096,7 +385000,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000075", @@ -352116,7 +385022,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000076", @@ -352136,7 +385044,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000077", @@ -352156,7 +385066,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000078", @@ -352176,7 +385088,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000079", @@ -352196,7 +385110,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000080", @@ -352216,7 +385132,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000081", @@ -352236,7 +385154,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000082", @@ -352256,7 +385176,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000083", @@ -352276,7 +385198,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000084", @@ -352296,7 +385220,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000085", @@ -352316,7 +385242,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000086", @@ -352336,7 +385264,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000087", @@ -352356,7 +385286,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000088", @@ -352376,7 +385308,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000089", @@ -352396,7 +385330,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000090", @@ -352416,7 +385352,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000091", @@ -352436,7 +385374,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000092", @@ -352456,7 +385396,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000093", @@ -352476,7 +385418,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000094", @@ -352496,7 +385440,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000095", @@ -352516,7 +385462,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000096", @@ -352536,7 +385484,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000098", @@ -352556,7 +385506,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000099", @@ -352576,7 +385528,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000102", @@ -352596,7 +385550,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000103", @@ -352616,7 +385572,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000105", @@ -352636,7 +385594,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000106", @@ -352656,7 +385616,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000107", @@ -352676,7 +385638,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000108", @@ -352696,7 +385660,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000109", @@ -352716,7 +385682,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000110", @@ -352736,7 +385704,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000111", @@ -352756,7 +385726,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000112", @@ -352776,7 +385748,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000113", @@ -352796,7 +385770,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000114", @@ -352816,7 +385792,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000115", @@ -352836,7 +385814,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000116", @@ -352856,7 +385836,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000117", @@ -352876,7 +385858,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000118", @@ -352896,7 +385880,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000119", @@ -352916,7 +385902,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000120", @@ -352936,7 +385924,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000121", @@ -352956,7 +385946,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000122", @@ -352976,7 +385968,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000123", @@ -352996,7 +385990,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000124", @@ -353016,7 +386012,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000125", @@ -353036,7 +386034,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000126", @@ -353056,7 +386056,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000127", @@ -353076,7 +386078,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000128", @@ -353096,7 +386100,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000129", @@ -353116,7 +386122,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000130", @@ -353136,7 +386144,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000131", @@ -353156,7 +386166,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000132", @@ -353176,7 +386188,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000133", @@ -353196,7 +386210,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000134", @@ -353216,7 +386232,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000135", @@ -353236,7 +386254,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000136", @@ -353256,7 +386276,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000137", @@ -353276,7 +386298,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000138", @@ -353296,7 +386320,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000139", @@ -353316,7 +386342,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000140", @@ -353336,7 +386364,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000141", @@ -353356,7 +386386,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000142", @@ -353376,7 +386408,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000143", @@ -353396,7 +386430,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000144", @@ -353416,7 +386452,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000145", @@ -353436,7 +386474,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000146", @@ -353456,7 +386496,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000147", @@ -353476,7 +386518,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000148", @@ -353496,7 +386540,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000149", @@ -353516,7 +386562,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000170", @@ -353536,7 +386584,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000171", @@ -353556,7 +386606,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000172", @@ -353576,7 +386628,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000173", @@ -353596,7 +386650,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000174", @@ -353616,7 +386672,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000175", @@ -353636,7 +386694,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000176", @@ -353656,7 +386716,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000177", @@ -353676,7 +386738,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000178", @@ -353696,7 +386760,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000179", @@ -353716,7 +386782,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000180", @@ -353736,7 +386804,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000181", @@ -353756,7 +386826,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000192", @@ -353776,7 +386848,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000193", @@ -353796,7 +386870,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000194", @@ -353816,7 +386892,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000195", @@ -353836,7 +386914,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000196", @@ -353856,7 +386936,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000197", @@ -353876,7 +386958,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000198", @@ -353896,7 +386980,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000199", @@ -353916,7 +387002,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000200", @@ -353936,7 +387024,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000202", @@ -353956,7 +387046,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000203", @@ -353976,7 +387068,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000207", @@ -353996,7 +387090,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000208", @@ -354016,7 +387112,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000209", @@ -354036,7 +387134,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000210", @@ -354056,7 +387156,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000211", @@ -354076,7 +387178,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000212", @@ -354096,7 +387200,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000213", @@ -354116,7 +387222,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000214", @@ -354136,7 +387244,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000215", @@ -354156,7 +387266,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000216", @@ -354176,7 +387288,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000217", @@ -354196,7 +387310,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000218", @@ -354216,7 +387332,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000219", @@ -354236,7 +387354,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000220", @@ -354256,7 +387376,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000221", @@ -354276,7 +387398,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000222", @@ -354296,7 +387420,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000223", @@ -354316,7 +387442,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000224", @@ -354336,7 +387464,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000225", @@ -354356,7 +387486,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000226", @@ -354376,7 +387508,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000227", @@ -354396,7 +387530,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000228", @@ -354416,7 +387552,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000229", @@ -354436,7 +387574,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000234", @@ -354456,7 +387596,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000235", @@ -354476,7 +387618,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000236", @@ -354496,7 +387640,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000237", @@ -354516,7 +387662,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000238", @@ -354536,7 +387684,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000239", @@ -354556,7 +387706,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000240", @@ -354576,7 +387728,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000241", @@ -354596,7 +387750,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000242", @@ -354616,7 +387772,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000243", @@ -354636,7 +387794,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000244", @@ -354656,7 +387816,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E07000245", @@ -354676,7 +387838,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000001", @@ -354696,7 +387860,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000002", @@ -354716,7 +387882,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000003", @@ -354736,7 +387904,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000004", @@ -354756,7 +387926,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000005", @@ -354776,7 +387948,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000006", @@ -354796,7 +387970,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000007", @@ -354816,7 +387992,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000008", @@ -354836,7 +388014,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000009", @@ -354856,7 +388036,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000010", @@ -354876,7 +388058,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000011", @@ -354896,7 +388080,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000012", @@ -354916,7 +388102,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000013", @@ -354936,7 +388124,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000014", @@ -354956,7 +388146,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000015", @@ -354976,7 +388168,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000016", @@ -354996,7 +388190,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000017", @@ -355016,7 +388212,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000018", @@ -355036,7 +388234,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000019", @@ -355056,7 +388256,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000021", @@ -355076,7 +388278,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000022", @@ -355096,7 +388300,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000023", @@ -355116,7 +388322,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000024", @@ -355136,7 +388344,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000025", @@ -355156,7 +388366,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000026", @@ -355176,7 +388388,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000027", @@ -355196,7 +388410,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000028", @@ -355216,7 +388432,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000029", @@ -355236,7 +388454,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000030", @@ -355256,7 +388476,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000031", @@ -355276,7 +388498,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000032", @@ -355296,7 +388520,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000033", @@ -355316,7 +388542,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000034", @@ -355336,7 +388564,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000035", @@ -355356,7 +388586,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000036", @@ -355376,7 +388608,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E08000037", @@ -355396,7 +388630,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000001", @@ -355416,7 +388652,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000002", @@ -355436,7 +388674,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000003", @@ -355456,7 +388696,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000004", @@ -355476,7 +388718,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000005", @@ -355496,7 +388740,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000006", @@ -355516,7 +388762,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000007", @@ -355536,7 +388784,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000008", @@ -355556,7 +388806,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000009", @@ -355576,7 +388828,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000010", @@ -355596,7 +388850,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000011", @@ -355616,7 +388872,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000012", @@ -355636,7 +388894,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000013", @@ -355656,7 +388916,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000014", @@ -355676,7 +388938,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000015", @@ -355696,7 +388960,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000016", @@ -355716,7 +388982,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000017", @@ -355736,7 +389004,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000018", @@ -355756,7 +389026,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000019", @@ -355776,7 +389048,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000020", @@ -355796,7 +389070,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000021", @@ -355816,7 +389092,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000022", @@ -355836,7 +389114,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000023", @@ -355856,7 +389136,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000024", @@ -355876,7 +389158,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000025", @@ -355896,7 +389180,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000026", @@ -355916,7 +389202,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000027", @@ -355936,7 +389224,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000028", @@ -355956,7 +389246,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000029", @@ -355976,7 +389268,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000030", @@ -355996,7 +389290,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000031", @@ -356016,7 +389312,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000032", @@ -356036,7 +389334,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@E09000033", @@ -356056,7 +389356,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000001", @@ -356076,7 +389378,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000002", @@ -356096,7 +389400,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000003", @@ -356116,7 +389422,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000004", @@ -356136,7 +389444,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000005", @@ -356156,7 +389466,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000006", @@ -356176,7 +389488,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000007", @@ -356196,7 +389510,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000008", @@ -356216,7 +389532,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000009", @@ -356236,7 +389554,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000010", @@ -356256,7 +389576,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@N09000011", @@ -356276,7 +389598,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000005", @@ -356296,7 +389620,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000006", @@ -356316,7 +389642,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000008", @@ -356336,7 +389664,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000010", @@ -356356,7 +389686,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000011", @@ -356376,7 +389708,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000013", @@ -356396,7 +389730,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000014", @@ -356416,7 +389752,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000017", @@ -356436,7 +389774,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000018", @@ -356456,7 +389796,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000019", @@ -356476,7 +389818,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000020", @@ -356496,7 +389840,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000021", @@ -356516,7 +389862,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000023", @@ -356536,7 +389884,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000026", @@ -356556,7 +389906,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000027", @@ -356576,7 +389928,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000028", @@ -356596,7 +389950,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000029", @@ -356616,7 +389972,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000030", @@ -356636,7 +389994,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000033", @@ -356656,7 +390016,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000034", @@ -356676,7 +390038,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000035", @@ -356696,7 +390060,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000036", @@ -356716,7 +390082,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000038", @@ -356736,7 +390104,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000039", @@ -356756,7 +390126,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000040", @@ -356776,7 +390148,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000041", @@ -356796,7 +390170,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000042", @@ -356816,7 +390192,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000045", @@ -356836,7 +390214,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000047", @@ -356856,7 +390236,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000048", @@ -356876,7 +390258,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000049", @@ -356896,7 +390280,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@S12000050", @@ -356916,7 +390302,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000001", @@ -356936,7 +390324,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000002", @@ -356956,7 +390346,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000003", @@ -356976,7 +390368,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000004", @@ -356996,7 +390390,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000005", @@ -357016,7 +390412,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000006", @@ -357036,7 +390434,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000008", @@ -357056,7 +390456,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000009", @@ -357076,7 +390478,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000010", @@ -357096,7 +390500,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000011", @@ -357116,7 +390522,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000012", @@ -357136,7 +390544,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000013", @@ -357156,7 +390566,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000014", @@ -357176,7 +390588,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000015", @@ -357196,7 +390610,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000016", @@ -357216,7 +390632,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000018", @@ -357236,7 +390654,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000019", @@ -357256,7 +390676,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000020", @@ -357276,7 +390698,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000021", @@ -357296,7 +390720,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000022", @@ -357316,7 +390742,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000023", @@ -357336,7 +390764,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.private_rent@W06000024", @@ -357356,7 +390786,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000001", @@ -357376,7 +390808,9 @@ "geography_level": "local_authority", "geography_id": "E06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000002", @@ -357396,7 +390830,9 @@ "geography_level": "local_authority", "geography_id": "E06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000003", @@ -357416,7 +390852,9 @@ "geography_level": "local_authority", "geography_id": "E06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000004", @@ -357436,7 +390874,9 @@ "geography_level": "local_authority", "geography_id": "E06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000005", @@ -357456,7 +390896,9 @@ "geography_level": "local_authority", "geography_id": "E06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000006", @@ -357476,7 +390918,9 @@ "geography_level": "local_authority", "geography_id": "E06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000007", @@ -357496,7 +390940,9 @@ "geography_level": "local_authority", "geography_id": "E06000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000008", @@ -357516,7 +390962,9 @@ "geography_level": "local_authority", "geography_id": "E06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000009", @@ -357536,7 +390984,9 @@ "geography_level": "local_authority", "geography_id": "E06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000010", @@ -357556,7 +391006,9 @@ "geography_level": "local_authority", "geography_id": "E06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000011", @@ -357576,7 +391028,9 @@ "geography_level": "local_authority", "geography_id": "E06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000012", @@ -357596,7 +391050,9 @@ "geography_level": "local_authority", "geography_id": "E06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000013", @@ -357616,7 +391072,9 @@ "geography_level": "local_authority", "geography_id": "E06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000014", @@ -357636,7 +391094,9 @@ "geography_level": "local_authority", "geography_id": "E06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000015", @@ -357656,7 +391116,9 @@ "geography_level": "local_authority", "geography_id": "E06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000016", @@ -357676,7 +391138,9 @@ "geography_level": "local_authority", "geography_id": "E06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000017", @@ -357696,7 +391160,9 @@ "geography_level": "local_authority", "geography_id": "E06000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000018", @@ -357716,7 +391182,9 @@ "geography_level": "local_authority", "geography_id": "E06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000019", @@ -357736,7 +391204,9 @@ "geography_level": "local_authority", "geography_id": "E06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000020", @@ -357756,7 +391226,9 @@ "geography_level": "local_authority", "geography_id": "E06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000021", @@ -357776,7 +391248,9 @@ "geography_level": "local_authority", "geography_id": "E06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000022", @@ -357796,7 +391270,9 @@ "geography_level": "local_authority", "geography_id": "E06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000023", @@ -357816,7 +391292,9 @@ "geography_level": "local_authority", "geography_id": "E06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000024", @@ -357836,7 +391314,9 @@ "geography_level": "local_authority", "geography_id": "E06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000025", @@ -357856,7 +391336,9 @@ "geography_level": "local_authority", "geography_id": "E06000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000026", @@ -357876,7 +391358,9 @@ "geography_level": "local_authority", "geography_id": "E06000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000027", @@ -357896,7 +391380,9 @@ "geography_level": "local_authority", "geography_id": "E06000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000030", @@ -357916,7 +391402,9 @@ "geography_level": "local_authority", "geography_id": "E06000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000031", @@ -357936,7 +391424,9 @@ "geography_level": "local_authority", "geography_id": "E06000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000032", @@ -357956,7 +391446,9 @@ "geography_level": "local_authority", "geography_id": "E06000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000033", @@ -357976,7 +391468,9 @@ "geography_level": "local_authority", "geography_id": "E06000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000034", @@ -357996,7 +391490,9 @@ "geography_level": "local_authority", "geography_id": "E06000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000035", @@ -358016,7 +391512,9 @@ "geography_level": "local_authority", "geography_id": "E06000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000036", @@ -358036,7 +391534,9 @@ "geography_level": "local_authority", "geography_id": "E06000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000037", @@ -358056,7 +391556,9 @@ "geography_level": "local_authority", "geography_id": "E06000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000038", @@ -358076,7 +391578,9 @@ "geography_level": "local_authority", "geography_id": "E06000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000039", @@ -358096,7 +391600,9 @@ "geography_level": "local_authority", "geography_id": "E06000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000040", @@ -358116,7 +391622,9 @@ "geography_level": "local_authority", "geography_id": "E06000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000041", @@ -358136,7 +391644,9 @@ "geography_level": "local_authority", "geography_id": "E06000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000042", @@ -358156,7 +391666,9 @@ "geography_level": "local_authority", "geography_id": "E06000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000043", @@ -358176,7 +391688,9 @@ "geography_level": "local_authority", "geography_id": "E06000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000044", @@ -358196,7 +391710,9 @@ "geography_level": "local_authority", "geography_id": "E06000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000045", @@ -358216,7 +391732,9 @@ "geography_level": "local_authority", "geography_id": "E06000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000046", @@ -358236,7 +391754,9 @@ "geography_level": "local_authority", "geography_id": "E06000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000047", @@ -358256,7 +391776,9 @@ "geography_level": "local_authority", "geography_id": "E06000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000049", @@ -358276,7 +391798,9 @@ "geography_level": "local_authority", "geography_id": "E06000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000050", @@ -358296,7 +391820,9 @@ "geography_level": "local_authority", "geography_id": "E06000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000051", @@ -358316,7 +391842,9 @@ "geography_level": "local_authority", "geography_id": "E06000051" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000052", @@ -358336,7 +391864,9 @@ "geography_level": "local_authority", "geography_id": "E06000052" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000053", @@ -358356,7 +391886,9 @@ "geography_level": "local_authority", "geography_id": "E06000053" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000054", @@ -358376,7 +391908,9 @@ "geography_level": "local_authority", "geography_id": "E06000054" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000055", @@ -358396,7 +391930,9 @@ "geography_level": "local_authority", "geography_id": "E06000055" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000056", @@ -358416,7 +391952,9 @@ "geography_level": "local_authority", "geography_id": "E06000056" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000057", @@ -358436,7 +391974,9 @@ "geography_level": "local_authority", "geography_id": "E06000057" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000058", @@ -358456,7 +391996,9 @@ "geography_level": "local_authority", "geography_id": "E06000058" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000059", @@ -358476,7 +392018,9 @@ "geography_level": "local_authority", "geography_id": "E06000059" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000060", @@ -358496,7 +392040,9 @@ "geography_level": "local_authority", "geography_id": "E06000060" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000061", @@ -358516,7 +392062,9 @@ "geography_level": "local_authority", "geography_id": "E06000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000062", @@ -358536,7 +392084,9 @@ "geography_level": "local_authority", "geography_id": "E06000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000063", @@ -358556,7 +392106,9 @@ "geography_level": "local_authority", "geography_id": "E06000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000064", @@ -358576,7 +392128,9 @@ "geography_level": "local_authority", "geography_id": "E06000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000065", @@ -358596,7 +392150,9 @@ "geography_level": "local_authority", "geography_id": "E06000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E06000066", @@ -358616,7 +392172,9 @@ "geography_level": "local_authority", "geography_id": "E06000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000008", @@ -358636,7 +392194,9 @@ "geography_level": "local_authority", "geography_id": "E07000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000009", @@ -358656,7 +392216,9 @@ "geography_level": "local_authority", "geography_id": "E07000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000010", @@ -358676,7 +392238,9 @@ "geography_level": "local_authority", "geography_id": "E07000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000011", @@ -358696,7 +392260,9 @@ "geography_level": "local_authority", "geography_id": "E07000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000012", @@ -358716,7 +392282,9 @@ "geography_level": "local_authority", "geography_id": "E07000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000032", @@ -358736,7 +392304,9 @@ "geography_level": "local_authority", "geography_id": "E07000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000033", @@ -358756,7 +392326,9 @@ "geography_level": "local_authority", "geography_id": "E07000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000034", @@ -358776,7 +392348,9 @@ "geography_level": "local_authority", "geography_id": "E07000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000035", @@ -358796,7 +392370,9 @@ "geography_level": "local_authority", "geography_id": "E07000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000036", @@ -358816,7 +392392,9 @@ "geography_level": "local_authority", "geography_id": "E07000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000037", @@ -358836,7 +392414,9 @@ "geography_level": "local_authority", "geography_id": "E07000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000038", @@ -358856,7 +392436,9 @@ "geography_level": "local_authority", "geography_id": "E07000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000039", @@ -358876,7 +392458,9 @@ "geography_level": "local_authority", "geography_id": "E07000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000040", @@ -358896,7 +392480,9 @@ "geography_level": "local_authority", "geography_id": "E07000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000041", @@ -358916,7 +392502,9 @@ "geography_level": "local_authority", "geography_id": "E07000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000042", @@ -358936,7 +392524,9 @@ "geography_level": "local_authority", "geography_id": "E07000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000043", @@ -358956,7 +392546,9 @@ "geography_level": "local_authority", "geography_id": "E07000043" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000044", @@ -358976,7 +392568,9 @@ "geography_level": "local_authority", "geography_id": "E07000044" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000045", @@ -358996,7 +392590,9 @@ "geography_level": "local_authority", "geography_id": "E07000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000046", @@ -359016,7 +392612,9 @@ "geography_level": "local_authority", "geography_id": "E07000046" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000047", @@ -359036,7 +392634,9 @@ "geography_level": "local_authority", "geography_id": "E07000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000061", @@ -359056,7 +392656,9 @@ "geography_level": "local_authority", "geography_id": "E07000061" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000062", @@ -359076,7 +392678,9 @@ "geography_level": "local_authority", "geography_id": "E07000062" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000063", @@ -359096,7 +392700,9 @@ "geography_level": "local_authority", "geography_id": "E07000063" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000064", @@ -359116,7 +392722,9 @@ "geography_level": "local_authority", "geography_id": "E07000064" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000065", @@ -359136,7 +392744,9 @@ "geography_level": "local_authority", "geography_id": "E07000065" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000066", @@ -359156,7 +392766,9 @@ "geography_level": "local_authority", "geography_id": "E07000066" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000067", @@ -359176,7 +392788,9 @@ "geography_level": "local_authority", "geography_id": "E07000067" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000068", @@ -359196,7 +392810,9 @@ "geography_level": "local_authority", "geography_id": "E07000068" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000069", @@ -359216,7 +392832,9 @@ "geography_level": "local_authority", "geography_id": "E07000069" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000070", @@ -359236,7 +392854,9 @@ "geography_level": "local_authority", "geography_id": "E07000070" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000071", @@ -359256,7 +392876,9 @@ "geography_level": "local_authority", "geography_id": "E07000071" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000072", @@ -359276,7 +392898,9 @@ "geography_level": "local_authority", "geography_id": "E07000072" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000073", @@ -359296,7 +392920,9 @@ "geography_level": "local_authority", "geography_id": "E07000073" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000074", @@ -359316,7 +392942,9 @@ "geography_level": "local_authority", "geography_id": "E07000074" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000075", @@ -359336,7 +392964,9 @@ "geography_level": "local_authority", "geography_id": "E07000075" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000076", @@ -359356,7 +392986,9 @@ "geography_level": "local_authority", "geography_id": "E07000076" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000077", @@ -359376,7 +393008,9 @@ "geography_level": "local_authority", "geography_id": "E07000077" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000078", @@ -359396,7 +393030,9 @@ "geography_level": "local_authority", "geography_id": "E07000078" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000079", @@ -359416,7 +393052,9 @@ "geography_level": "local_authority", "geography_id": "E07000079" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000080", @@ -359436,7 +393074,9 @@ "geography_level": "local_authority", "geography_id": "E07000080" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000081", @@ -359456,7 +393096,9 @@ "geography_level": "local_authority", "geography_id": "E07000081" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000082", @@ -359476,7 +393118,9 @@ "geography_level": "local_authority", "geography_id": "E07000082" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000083", @@ -359496,7 +393140,9 @@ "geography_level": "local_authority", "geography_id": "E07000083" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000084", @@ -359516,7 +393162,9 @@ "geography_level": "local_authority", "geography_id": "E07000084" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000085", @@ -359536,7 +393184,9 @@ "geography_level": "local_authority", "geography_id": "E07000085" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000086", @@ -359556,7 +393206,9 @@ "geography_level": "local_authority", "geography_id": "E07000086" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000087", @@ -359576,7 +393228,9 @@ "geography_level": "local_authority", "geography_id": "E07000087" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000088", @@ -359596,7 +393250,9 @@ "geography_level": "local_authority", "geography_id": "E07000088" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000089", @@ -359616,7 +393272,9 @@ "geography_level": "local_authority", "geography_id": "E07000089" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000090", @@ -359636,7 +393294,9 @@ "geography_level": "local_authority", "geography_id": "E07000090" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000091", @@ -359656,7 +393316,9 @@ "geography_level": "local_authority", "geography_id": "E07000091" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000092", @@ -359676,7 +393338,9 @@ "geography_level": "local_authority", "geography_id": "E07000092" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000093", @@ -359696,7 +393360,9 @@ "geography_level": "local_authority", "geography_id": "E07000093" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000094", @@ -359716,7 +393382,9 @@ "geography_level": "local_authority", "geography_id": "E07000094" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000095", @@ -359736,7 +393404,9 @@ "geography_level": "local_authority", "geography_id": "E07000095" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000096", @@ -359756,7 +393426,9 @@ "geography_level": "local_authority", "geography_id": "E07000096" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000098", @@ -359776,7 +393448,9 @@ "geography_level": "local_authority", "geography_id": "E07000098" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000099", @@ -359796,7 +393470,9 @@ "geography_level": "local_authority", "geography_id": "E07000099" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000102", @@ -359816,7 +393492,9 @@ "geography_level": "local_authority", "geography_id": "E07000102" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000103", @@ -359836,7 +393514,9 @@ "geography_level": "local_authority", "geography_id": "E07000103" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000105", @@ -359856,7 +393536,9 @@ "geography_level": "local_authority", "geography_id": "E07000105" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000106", @@ -359876,7 +393558,9 @@ "geography_level": "local_authority", "geography_id": "E07000106" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000107", @@ -359896,7 +393580,9 @@ "geography_level": "local_authority", "geography_id": "E07000107" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000108", @@ -359916,7 +393602,9 @@ "geography_level": "local_authority", "geography_id": "E07000108" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000109", @@ -359936,7 +393624,9 @@ "geography_level": "local_authority", "geography_id": "E07000109" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000110", @@ -359956,7 +393646,9 @@ "geography_level": "local_authority", "geography_id": "E07000110" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000111", @@ -359976,7 +393668,9 @@ "geography_level": "local_authority", "geography_id": "E07000111" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000112", @@ -359996,7 +393690,9 @@ "geography_level": "local_authority", "geography_id": "E07000112" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000113", @@ -360016,7 +393712,9 @@ "geography_level": "local_authority", "geography_id": "E07000113" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000114", @@ -360036,7 +393734,9 @@ "geography_level": "local_authority", "geography_id": "E07000114" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000115", @@ -360056,7 +393756,9 @@ "geography_level": "local_authority", "geography_id": "E07000115" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000116", @@ -360076,7 +393778,9 @@ "geography_level": "local_authority", "geography_id": "E07000116" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000117", @@ -360096,7 +393800,9 @@ "geography_level": "local_authority", "geography_id": "E07000117" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000118", @@ -360116,7 +393822,9 @@ "geography_level": "local_authority", "geography_id": "E07000118" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000119", @@ -360136,7 +393844,9 @@ "geography_level": "local_authority", "geography_id": "E07000119" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000120", @@ -360156,7 +393866,9 @@ "geography_level": "local_authority", "geography_id": "E07000120" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000121", @@ -360176,7 +393888,9 @@ "geography_level": "local_authority", "geography_id": "E07000121" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000122", @@ -360196,7 +393910,9 @@ "geography_level": "local_authority", "geography_id": "E07000122" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000123", @@ -360216,7 +393932,9 @@ "geography_level": "local_authority", "geography_id": "E07000123" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000124", @@ -360236,7 +393954,9 @@ "geography_level": "local_authority", "geography_id": "E07000124" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000125", @@ -360256,7 +393976,9 @@ "geography_level": "local_authority", "geography_id": "E07000125" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000126", @@ -360276,7 +393998,9 @@ "geography_level": "local_authority", "geography_id": "E07000126" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000127", @@ -360296,7 +394020,9 @@ "geography_level": "local_authority", "geography_id": "E07000127" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000128", @@ -360316,7 +394042,9 @@ "geography_level": "local_authority", "geography_id": "E07000128" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000129", @@ -360336,7 +394064,9 @@ "geography_level": "local_authority", "geography_id": "E07000129" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000130", @@ -360356,7 +394086,9 @@ "geography_level": "local_authority", "geography_id": "E07000130" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000131", @@ -360376,7 +394108,9 @@ "geography_level": "local_authority", "geography_id": "E07000131" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000132", @@ -360396,7 +394130,9 @@ "geography_level": "local_authority", "geography_id": "E07000132" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000133", @@ -360416,7 +394152,9 @@ "geography_level": "local_authority", "geography_id": "E07000133" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000134", @@ -360436,7 +394174,9 @@ "geography_level": "local_authority", "geography_id": "E07000134" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000135", @@ -360456,7 +394196,9 @@ "geography_level": "local_authority", "geography_id": "E07000135" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000136", @@ -360476,7 +394218,9 @@ "geography_level": "local_authority", "geography_id": "E07000136" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000137", @@ -360496,7 +394240,9 @@ "geography_level": "local_authority", "geography_id": "E07000137" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000138", @@ -360516,7 +394262,9 @@ "geography_level": "local_authority", "geography_id": "E07000138" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000139", @@ -360536,7 +394284,9 @@ "geography_level": "local_authority", "geography_id": "E07000139" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000140", @@ -360556,7 +394306,9 @@ "geography_level": "local_authority", "geography_id": "E07000140" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000141", @@ -360576,7 +394328,9 @@ "geography_level": "local_authority", "geography_id": "E07000141" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000142", @@ -360596,7 +394350,9 @@ "geography_level": "local_authority", "geography_id": "E07000142" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000143", @@ -360616,7 +394372,9 @@ "geography_level": "local_authority", "geography_id": "E07000143" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000144", @@ -360636,7 +394394,9 @@ "geography_level": "local_authority", "geography_id": "E07000144" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000145", @@ -360656,7 +394416,9 @@ "geography_level": "local_authority", "geography_id": "E07000145" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000146", @@ -360676,7 +394438,9 @@ "geography_level": "local_authority", "geography_id": "E07000146" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000147", @@ -360696,7 +394460,9 @@ "geography_level": "local_authority", "geography_id": "E07000147" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000148", @@ -360716,7 +394482,9 @@ "geography_level": "local_authority", "geography_id": "E07000148" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000149", @@ -360736,7 +394504,9 @@ "geography_level": "local_authority", "geography_id": "E07000149" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000170", @@ -360756,7 +394526,9 @@ "geography_level": "local_authority", "geography_id": "E07000170" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000171", @@ -360776,7 +394548,9 @@ "geography_level": "local_authority", "geography_id": "E07000171" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000172", @@ -360796,7 +394570,9 @@ "geography_level": "local_authority", "geography_id": "E07000172" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000173", @@ -360816,7 +394592,9 @@ "geography_level": "local_authority", "geography_id": "E07000173" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000174", @@ -360836,7 +394614,9 @@ "geography_level": "local_authority", "geography_id": "E07000174" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000175", @@ -360856,7 +394636,9 @@ "geography_level": "local_authority", "geography_id": "E07000175" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000176", @@ -360876,7 +394658,9 @@ "geography_level": "local_authority", "geography_id": "E07000176" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000177", @@ -360896,7 +394680,9 @@ "geography_level": "local_authority", "geography_id": "E07000177" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000178", @@ -360916,7 +394702,9 @@ "geography_level": "local_authority", "geography_id": "E07000178" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000179", @@ -360936,7 +394724,9 @@ "geography_level": "local_authority", "geography_id": "E07000179" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000180", @@ -360956,7 +394746,9 @@ "geography_level": "local_authority", "geography_id": "E07000180" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000181", @@ -360976,7 +394768,9 @@ "geography_level": "local_authority", "geography_id": "E07000181" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000192", @@ -360996,7 +394790,9 @@ "geography_level": "local_authority", "geography_id": "E07000192" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000193", @@ -361016,7 +394812,9 @@ "geography_level": "local_authority", "geography_id": "E07000193" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000194", @@ -361036,7 +394834,9 @@ "geography_level": "local_authority", "geography_id": "E07000194" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000195", @@ -361056,7 +394856,9 @@ "geography_level": "local_authority", "geography_id": "E07000195" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000196", @@ -361076,7 +394878,9 @@ "geography_level": "local_authority", "geography_id": "E07000196" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000197", @@ -361096,7 +394900,9 @@ "geography_level": "local_authority", "geography_id": "E07000197" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000198", @@ -361116,7 +394922,9 @@ "geography_level": "local_authority", "geography_id": "E07000198" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000199", @@ -361136,7 +394944,9 @@ "geography_level": "local_authority", "geography_id": "E07000199" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000200", @@ -361156,7 +394966,9 @@ "geography_level": "local_authority", "geography_id": "E07000200" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000202", @@ -361176,7 +394988,9 @@ "geography_level": "local_authority", "geography_id": "E07000202" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000203", @@ -361196,7 +395010,9 @@ "geography_level": "local_authority", "geography_id": "E07000203" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000207", @@ -361216,7 +395032,9 @@ "geography_level": "local_authority", "geography_id": "E07000207" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000208", @@ -361236,7 +395054,9 @@ "geography_level": "local_authority", "geography_id": "E07000208" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000209", @@ -361256,7 +395076,9 @@ "geography_level": "local_authority", "geography_id": "E07000209" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000210", @@ -361276,7 +395098,9 @@ "geography_level": "local_authority", "geography_id": "E07000210" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000211", @@ -361296,7 +395120,9 @@ "geography_level": "local_authority", "geography_id": "E07000211" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000212", @@ -361316,7 +395142,9 @@ "geography_level": "local_authority", "geography_id": "E07000212" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000213", @@ -361336,7 +395164,9 @@ "geography_level": "local_authority", "geography_id": "E07000213" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000214", @@ -361356,7 +395186,9 @@ "geography_level": "local_authority", "geography_id": "E07000214" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000215", @@ -361376,7 +395208,9 @@ "geography_level": "local_authority", "geography_id": "E07000215" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000216", @@ -361396,7 +395230,9 @@ "geography_level": "local_authority", "geography_id": "E07000216" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000217", @@ -361416,7 +395252,9 @@ "geography_level": "local_authority", "geography_id": "E07000217" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000218", @@ -361436,7 +395274,9 @@ "geography_level": "local_authority", "geography_id": "E07000218" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000219", @@ -361456,7 +395296,9 @@ "geography_level": "local_authority", "geography_id": "E07000219" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000220", @@ -361476,7 +395318,9 @@ "geography_level": "local_authority", "geography_id": "E07000220" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000221", @@ -361496,7 +395340,9 @@ "geography_level": "local_authority", "geography_id": "E07000221" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000222", @@ -361516,7 +395362,9 @@ "geography_level": "local_authority", "geography_id": "E07000222" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000223", @@ -361536,7 +395384,9 @@ "geography_level": "local_authority", "geography_id": "E07000223" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000224", @@ -361556,7 +395406,9 @@ "geography_level": "local_authority", "geography_id": "E07000224" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000225", @@ -361576,7 +395428,9 @@ "geography_level": "local_authority", "geography_id": "E07000225" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000226", @@ -361596,7 +395450,9 @@ "geography_level": "local_authority", "geography_id": "E07000226" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000227", @@ -361616,7 +395472,9 @@ "geography_level": "local_authority", "geography_id": "E07000227" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000228", @@ -361636,7 +395494,9 @@ "geography_level": "local_authority", "geography_id": "E07000228" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000229", @@ -361656,7 +395516,9 @@ "geography_level": "local_authority", "geography_id": "E07000229" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000234", @@ -361676,7 +395538,9 @@ "geography_level": "local_authority", "geography_id": "E07000234" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000235", @@ -361696,7 +395560,9 @@ "geography_level": "local_authority", "geography_id": "E07000235" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000236", @@ -361716,7 +395582,9 @@ "geography_level": "local_authority", "geography_id": "E07000236" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000237", @@ -361736,7 +395604,9 @@ "geography_level": "local_authority", "geography_id": "E07000237" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000238", @@ -361756,7 +395626,9 @@ "geography_level": "local_authority", "geography_id": "E07000238" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000239", @@ -361776,7 +395648,9 @@ "geography_level": "local_authority", "geography_id": "E07000239" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000240", @@ -361796,7 +395670,9 @@ "geography_level": "local_authority", "geography_id": "E07000240" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000241", @@ -361816,7 +395692,9 @@ "geography_level": "local_authority", "geography_id": "E07000241" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000242", @@ -361836,7 +395714,9 @@ "geography_level": "local_authority", "geography_id": "E07000242" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000243", @@ -361856,7 +395736,9 @@ "geography_level": "local_authority", "geography_id": "E07000243" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000244", @@ -361876,7 +395758,9 @@ "geography_level": "local_authority", "geography_id": "E07000244" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E07000245", @@ -361896,7 +395780,9 @@ "geography_level": "local_authority", "geography_id": "E07000245" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000001", @@ -361916,7 +395802,9 @@ "geography_level": "local_authority", "geography_id": "E08000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000002", @@ -361936,7 +395824,9 @@ "geography_level": "local_authority", "geography_id": "E08000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000003", @@ -361956,7 +395846,9 @@ "geography_level": "local_authority", "geography_id": "E08000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000004", @@ -361976,7 +395868,9 @@ "geography_level": "local_authority", "geography_id": "E08000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000005", @@ -361996,7 +395890,9 @@ "geography_level": "local_authority", "geography_id": "E08000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000006", @@ -362016,7 +395912,9 @@ "geography_level": "local_authority", "geography_id": "E08000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000007", @@ -362036,7 +395934,9 @@ "geography_level": "local_authority", "geography_id": "E08000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000008", @@ -362056,7 +395956,9 @@ "geography_level": "local_authority", "geography_id": "E08000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000009", @@ -362076,7 +395978,9 @@ "geography_level": "local_authority", "geography_id": "E08000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000010", @@ -362096,7 +396000,9 @@ "geography_level": "local_authority", "geography_id": "E08000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000011", @@ -362116,7 +396022,9 @@ "geography_level": "local_authority", "geography_id": "E08000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000012", @@ -362136,7 +396044,9 @@ "geography_level": "local_authority", "geography_id": "E08000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000013", @@ -362156,7 +396066,9 @@ "geography_level": "local_authority", "geography_id": "E08000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000014", @@ -362176,7 +396088,9 @@ "geography_level": "local_authority", "geography_id": "E08000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000015", @@ -362196,7 +396110,9 @@ "geography_level": "local_authority", "geography_id": "E08000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000016", @@ -362216,7 +396132,9 @@ "geography_level": "local_authority", "geography_id": "E08000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000017", @@ -362236,7 +396154,9 @@ "geography_level": "local_authority", "geography_id": "E08000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000018", @@ -362256,7 +396176,9 @@ "geography_level": "local_authority", "geography_id": "E08000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000019", @@ -362276,7 +396198,9 @@ "geography_level": "local_authority", "geography_id": "E08000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000021", @@ -362296,7 +396220,9 @@ "geography_level": "local_authority", "geography_id": "E08000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000022", @@ -362316,7 +396242,9 @@ "geography_level": "local_authority", "geography_id": "E08000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000023", @@ -362336,7 +396264,9 @@ "geography_level": "local_authority", "geography_id": "E08000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000024", @@ -362356,7 +396286,9 @@ "geography_level": "local_authority", "geography_id": "E08000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000025", @@ -362376,7 +396308,9 @@ "geography_level": "local_authority", "geography_id": "E08000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000026", @@ -362396,7 +396330,9 @@ "geography_level": "local_authority", "geography_id": "E08000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000027", @@ -362416,7 +396352,9 @@ "geography_level": "local_authority", "geography_id": "E08000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000028", @@ -362436,7 +396374,9 @@ "geography_level": "local_authority", "geography_id": "E08000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000029", @@ -362456,7 +396396,9 @@ "geography_level": "local_authority", "geography_id": "E08000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000030", @@ -362476,7 +396418,9 @@ "geography_level": "local_authority", "geography_id": "E08000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000031", @@ -362496,7 +396440,9 @@ "geography_level": "local_authority", "geography_id": "E08000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000032", @@ -362516,7 +396462,9 @@ "geography_level": "local_authority", "geography_id": "E08000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000033", @@ -362536,7 +396484,9 @@ "geography_level": "local_authority", "geography_id": "E08000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000034", @@ -362556,7 +396506,9 @@ "geography_level": "local_authority", "geography_id": "E08000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000035", @@ -362576,7 +396528,9 @@ "geography_level": "local_authority", "geography_id": "E08000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000036", @@ -362596,7 +396550,9 @@ "geography_level": "local_authority", "geography_id": "E08000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E08000037", @@ -362616,7 +396572,9 @@ "geography_level": "local_authority", "geography_id": "E08000037" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000001", @@ -362636,7 +396594,9 @@ "geography_level": "local_authority", "geography_id": "E09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000002", @@ -362656,7 +396616,9 @@ "geography_level": "local_authority", "geography_id": "E09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000003", @@ -362676,7 +396638,9 @@ "geography_level": "local_authority", "geography_id": "E09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000004", @@ -362696,7 +396660,9 @@ "geography_level": "local_authority", "geography_id": "E09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000005", @@ -362716,7 +396682,9 @@ "geography_level": "local_authority", "geography_id": "E09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000006", @@ -362736,7 +396704,9 @@ "geography_level": "local_authority", "geography_id": "E09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000007", @@ -362756,7 +396726,9 @@ "geography_level": "local_authority", "geography_id": "E09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000008", @@ -362776,7 +396748,9 @@ "geography_level": "local_authority", "geography_id": "E09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000009", @@ -362796,7 +396770,9 @@ "geography_level": "local_authority", "geography_id": "E09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000010", @@ -362816,7 +396792,9 @@ "geography_level": "local_authority", "geography_id": "E09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000011", @@ -362836,7 +396814,9 @@ "geography_level": "local_authority", "geography_id": "E09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000012", @@ -362856,7 +396836,9 @@ "geography_level": "local_authority", "geography_id": "E09000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000013", @@ -362876,7 +396858,9 @@ "geography_level": "local_authority", "geography_id": "E09000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000014", @@ -362896,7 +396880,9 @@ "geography_level": "local_authority", "geography_id": "E09000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000015", @@ -362916,7 +396902,9 @@ "geography_level": "local_authority", "geography_id": "E09000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000016", @@ -362936,7 +396924,9 @@ "geography_level": "local_authority", "geography_id": "E09000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000017", @@ -362956,7 +396946,9 @@ "geography_level": "local_authority", "geography_id": "E09000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000018", @@ -362976,7 +396968,9 @@ "geography_level": "local_authority", "geography_id": "E09000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000019", @@ -362996,7 +396990,9 @@ "geography_level": "local_authority", "geography_id": "E09000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000020", @@ -363016,7 +397012,9 @@ "geography_level": "local_authority", "geography_id": "E09000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000021", @@ -363036,7 +397034,9 @@ "geography_level": "local_authority", "geography_id": "E09000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000022", @@ -363056,7 +397056,9 @@ "geography_level": "local_authority", "geography_id": "E09000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000023", @@ -363076,7 +397078,9 @@ "geography_level": "local_authority", "geography_id": "E09000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000024", @@ -363096,7 +397100,9 @@ "geography_level": "local_authority", "geography_id": "E09000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000025", @@ -363116,7 +397122,9 @@ "geography_level": "local_authority", "geography_id": "E09000025" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000026", @@ -363136,7 +397144,9 @@ "geography_level": "local_authority", "geography_id": "E09000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000027", @@ -363156,7 +397166,9 @@ "geography_level": "local_authority", "geography_id": "E09000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000028", @@ -363176,7 +397188,9 @@ "geography_level": "local_authority", "geography_id": "E09000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000029", @@ -363196,7 +397210,9 @@ "geography_level": "local_authority", "geography_id": "E09000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000030", @@ -363216,7 +397232,9 @@ "geography_level": "local_authority", "geography_id": "E09000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000031", @@ -363236,7 +397254,9 @@ "geography_level": "local_authority", "geography_id": "E09000031" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000032", @@ -363256,7 +397276,9 @@ "geography_level": "local_authority", "geography_id": "E09000032" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@E09000033", @@ -363276,7 +397298,9 @@ "geography_level": "local_authority", "geography_id": "E09000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000001", @@ -363296,7 +397320,9 @@ "geography_level": "local_authority", "geography_id": "N09000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000002", @@ -363316,7 +397342,9 @@ "geography_level": "local_authority", "geography_id": "N09000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000003", @@ -363336,7 +397364,9 @@ "geography_level": "local_authority", "geography_id": "N09000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000004", @@ -363356,7 +397386,9 @@ "geography_level": "local_authority", "geography_id": "N09000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000005", @@ -363376,7 +397408,9 @@ "geography_level": "local_authority", "geography_id": "N09000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000006", @@ -363396,7 +397430,9 @@ "geography_level": "local_authority", "geography_id": "N09000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000007", @@ -363416,7 +397452,9 @@ "geography_level": "local_authority", "geography_id": "N09000007" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000008", @@ -363436,7 +397474,9 @@ "geography_level": "local_authority", "geography_id": "N09000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000009", @@ -363456,7 +397496,9 @@ "geography_level": "local_authority", "geography_id": "N09000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000010", @@ -363476,7 +397518,9 @@ "geography_level": "local_authority", "geography_id": "N09000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@N09000011", @@ -363496,7 +397540,9 @@ "geography_level": "local_authority", "geography_id": "N09000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000005", @@ -363516,7 +397562,9 @@ "geography_level": "local_authority", "geography_id": "S12000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000006", @@ -363536,7 +397584,9 @@ "geography_level": "local_authority", "geography_id": "S12000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000008", @@ -363556,7 +397606,9 @@ "geography_level": "local_authority", "geography_id": "S12000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000010", @@ -363576,7 +397628,9 @@ "geography_level": "local_authority", "geography_id": "S12000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000011", @@ -363596,7 +397650,9 @@ "geography_level": "local_authority", "geography_id": "S12000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000013", @@ -363616,7 +397672,9 @@ "geography_level": "local_authority", "geography_id": "S12000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000014", @@ -363636,7 +397694,9 @@ "geography_level": "local_authority", "geography_id": "S12000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000017", @@ -363656,7 +397716,9 @@ "geography_level": "local_authority", "geography_id": "S12000017" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000018", @@ -363676,7 +397738,9 @@ "geography_level": "local_authority", "geography_id": "S12000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000019", @@ -363696,7 +397760,9 @@ "geography_level": "local_authority", "geography_id": "S12000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000020", @@ -363716,7 +397782,9 @@ "geography_level": "local_authority", "geography_id": "S12000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000021", @@ -363736,7 +397804,9 @@ "geography_level": "local_authority", "geography_id": "S12000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000023", @@ -363756,7 +397826,9 @@ "geography_level": "local_authority", "geography_id": "S12000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000026", @@ -363776,7 +397848,9 @@ "geography_level": "local_authority", "geography_id": "S12000026" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000027", @@ -363796,7 +397870,9 @@ "geography_level": "local_authority", "geography_id": "S12000027" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000028", @@ -363816,7 +397892,9 @@ "geography_level": "local_authority", "geography_id": "S12000028" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000029", @@ -363836,7 +397914,9 @@ "geography_level": "local_authority", "geography_id": "S12000029" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000030", @@ -363856,7 +397936,9 @@ "geography_level": "local_authority", "geography_id": "S12000030" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000033", @@ -363876,7 +397958,9 @@ "geography_level": "local_authority", "geography_id": "S12000033" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000034", @@ -363896,7 +397980,9 @@ "geography_level": "local_authority", "geography_id": "S12000034" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000035", @@ -363916,7 +398002,9 @@ "geography_level": "local_authority", "geography_id": "S12000035" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000036", @@ -363936,7 +398024,9 @@ "geography_level": "local_authority", "geography_id": "S12000036" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000038", @@ -363956,7 +398046,9 @@ "geography_level": "local_authority", "geography_id": "S12000038" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000039", @@ -363976,7 +398068,9 @@ "geography_level": "local_authority", "geography_id": "S12000039" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000040", @@ -363996,7 +398090,9 @@ "geography_level": "local_authority", "geography_id": "S12000040" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000041", @@ -364016,7 +398112,9 @@ "geography_level": "local_authority", "geography_id": "S12000041" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000042", @@ -364036,7 +398134,9 @@ "geography_level": "local_authority", "geography_id": "S12000042" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000045", @@ -364056,7 +398156,9 @@ "geography_level": "local_authority", "geography_id": "S12000045" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000047", @@ -364076,7 +398178,9 @@ "geography_level": "local_authority", "geography_id": "S12000047" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000048", @@ -364096,7 +398200,9 @@ "geography_level": "local_authority", "geography_id": "S12000048" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000049", @@ -364116,7 +398222,9 @@ "geography_level": "local_authority", "geography_id": "S12000049" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@S12000050", @@ -364136,7 +398244,9 @@ "geography_level": "local_authority", "geography_id": "S12000050" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2022", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000001", @@ -364156,7 +398266,9 @@ "geography_level": "local_authority", "geography_id": "W06000001" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000002", @@ -364176,7 +398288,9 @@ "geography_level": "local_authority", "geography_id": "W06000002" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000003", @@ -364196,7 +398310,9 @@ "geography_level": "local_authority", "geography_id": "W06000003" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000004", @@ -364216,7 +398332,9 @@ "geography_level": "local_authority", "geography_id": "W06000004" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000005", @@ -364236,7 +398354,9 @@ "geography_level": "local_authority", "geography_id": "W06000005" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000006", @@ -364256,7 +398376,9 @@ "geography_level": "local_authority", "geography_id": "W06000006" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000008", @@ -364276,7 +398398,9 @@ "geography_level": "local_authority", "geography_id": "W06000008" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000009", @@ -364296,7 +398420,9 @@ "geography_level": "local_authority", "geography_id": "W06000009" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000010", @@ -364316,7 +398442,9 @@ "geography_level": "local_authority", "geography_id": "W06000010" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000011", @@ -364336,7 +398464,9 @@ "geography_level": "local_authority", "geography_id": "W06000011" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000012", @@ -364356,7 +398486,9 @@ "geography_level": "local_authority", "geography_id": "W06000012" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000013", @@ -364376,7 +398508,9 @@ "geography_level": "local_authority", "geography_id": "W06000013" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000014", @@ -364396,7 +398530,9 @@ "geography_level": "local_authority", "geography_id": "W06000014" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000015", @@ -364416,7 +398552,9 @@ "geography_level": "local_authority", "geography_id": "W06000015" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000016", @@ -364436,7 +398574,9 @@ "geography_level": "local_authority", "geography_id": "W06000016" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000018", @@ -364456,7 +398596,9 @@ "geography_level": "local_authority", "geography_id": "W06000018" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000019", @@ -364476,7 +398618,9 @@ "geography_level": "local_authority", "geography_id": "W06000019" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000020", @@ -364496,7 +398640,9 @@ "geography_level": "local_authority", "geography_id": "W06000020" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000021", @@ -364516,7 +398662,9 @@ "geography_level": "local_authority", "geography_id": "W06000021" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000022", @@ -364536,7 +398684,9 @@ "geography_level": "local_authority", "geography_id": "W06000022" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000023", @@ -364556,7 +398706,9 @@ "geography_level": "local_authority", "geography_id": "W06000023" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "ons.tenure.social_rent@W06000024", @@ -364576,7 +398728,9 @@ "geography_level": "local_authority", "geography_id": "W06000024" }, - "value_operation": "sum" + "value_operation": "sum", + "uprating_from_period": "2021", + "uprating_to_period": 2025 }, { "name": "voa.council_tax_stock.by_area.band_a@E06000001", diff --git a/packages/microcosm-build/src/microcosm/build/uk/uk_local_target_census.json b/packages/microcosm-build/src/microcosm/build/uk/uk_local_target_census.json index a0ae7e572..82ca13545 100644 --- a/packages/microcosm-build/src/microcosm/build/uk/uk_local_target_census.json +++ b/packages/microcosm-build/src/microcosm/build/uk/uk_local_target_census.json @@ -91,7 +91,7 @@ "enforcement": "review_required_before_binding", "fence_id": "uc_unit_vs_household_grain", "fenced_fact_count": null, - "rule": "The runtime maps benefit-unit-level UC receipt to household grain: a physical household containing two UC benefit units contributes 2 to uc_households but 1 to a child band. DWP UC statistics count UC claim households, which align with benefit units rather than physical FRS households. Binding must declare the grain crosswalk (or change the runtime metric) before either UC family enters a solve." + "rule": "The runtime maps benefit-unit-level UC receipt and each UC benefit unit's num_children band onto household rows by sum: a physical household containing two UC benefit units contributes 2 to uc_households and one contribution to each unit's child band. This aligns the runtime with DWP UC claim households, which correspond to benefit units rather than physical FRS households; binding must preserve this reviewed grain crosswalk." }, { "authority": "ONS/NRS/NISRA statistical disclosure control documentation; microcosm#495 scoping (cross-family review measurement).", @@ -180,7 +180,7 @@ "adjudications": [ "uc_unit_vs_household_grain" ], - "description": "Households on Universal Credit, and (constituency only, in code today) the split by number of children.", + "description": "Universal Credit benefit units summed onto household rows, and (constituency only) their split by benefit-unit num_children.", "family": "uc_households", "sources": [ "dwp_stat_xplore_uc" diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/__init__.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/__init__.py index 1255ee5b7..14f87bf64 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/__init__.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/__init__.py @@ -13,6 +13,11 @@ UK_GATE_REGISTRY, UKGateBinding, ) +from microcosm.build.uk_runtime.calibration_run import ( + load_bound_spine_sidecar, + runtime_provenance, + spine_provenance_from_sidecar, +) from microcosm.build.uk_runtime.cgt_calibration import ( UK_CGT_ANNUAL_EXEMPT_AMOUNTS, UK_CGT_GAINS_AMOUNT_COLUMN, @@ -29,6 +34,7 @@ UK_DIAGNOSTICS_SCHEMA_VERSION, UK_TARGET_GEOGRAPHY_LEVELS, uk_calibration_diagnostics_payload, + uk_support_limited_misses, uk_weakest_areas_by_fit, uk_weakest_families, uk_weight_summary, @@ -263,12 +269,15 @@ compile_uk_target_registry, load_uk_local_area_crosswalk, materialize_uk_ledger_targets, + uk_local_target_surface, ) from microcosm.build.uk_runtime.local_doctrine import ( UK_LOCAL_MAX_WEIGHT_RATIO, UK_LOCAL_SOLVE_DOCTRINE, UK_LOCAL_TARGET_LOSS_CAP, UKLocalSolveDoctrine, + uk_local_doctrine_with_overrides, + uk_local_target_loss_weights, ) from microcosm.build.uk_runtime.local_geography import ( align_area_targets, @@ -279,7 +288,9 @@ UK_LOCAL_HOLDOUT_SEED, UKRowwiseDoctrineSolve, UKRowwiseLocalMatrix, + UKRowwiseNationalRows, build_uk_rowwise_local_matrix, + build_uk_rowwise_local_surface_matrix, past_cap_census, require_adjudicated_uk_local_binding, rotated_uk_local_holdout, @@ -315,6 +326,12 @@ metric_names_from_target_profile, metric_tables_by_area_group, ) +from microcosm.build.uk_runtime.national_calibration import ( + CalibrationFrameAdapter, + drop_injected_measure_inputs, + inject_measure_inputs, + prepare_uk_target_frame, +) from microcosm.build.uk_runtime.national_doctrine import ( UK_NATIONAL_L0_LAMBDA, UK_NATIONAL_LEARNING_RATE, @@ -340,6 +357,10 @@ validate_uk_national_frame, write_uk_national_frame, ) +from microcosm.build.uk_runtime.national_sampling import ( + sample_uk_spine_frame, + uk_spine_source_family_units, +) from microcosm.build.uk_runtime.oa_ladder_sources import ( LADDER_OA_COLUMNS, assemble_uk_oa_ladder, @@ -507,6 +528,7 @@ "disaggregate_uk_age_top_code", "load_uk_age_tail_band_populations", "ARTIFACT_CLONE_INDEX_COLUMN", + "CalibrationFrameAdapter", "UKGateBinding", "UKRowwiseDoctrineSolve", "UK_CGT_ANNUAL_EXEMPT_AMOUNTS", @@ -528,7 +550,9 @@ "materialize_uk_cgt_calibration_frame", "require_adjudicated_uk_local_binding", "rowwise_calibration_mass_reason", + "runtime_provenance", "rotated_uk_local_holdout", + "sample_uk_spine_frame", "uk_cgt_annual_exempt_amount", "UK_CGT_REQUIRED_COLUMNS", "UK_CGT_TARGET_COVERAGE_REQUIREMENTS", @@ -675,6 +699,7 @@ "UKLadderRowwiseDatasetResult", "UKLocalSolveDoctrine", "UKRowwiseLocalMatrix", + "UKRowwiseNationalRows", "RESTORED_REFERENCE_EFRS_REQUIRED_INPUTS", "UKHMRCIncomeCalibration", "UKHMRCTargetMaterialization", @@ -741,6 +766,7 @@ "build_official_uk_geography_crosswalk", "build_scotland_crosswalk", "build_uk_rowwise_local_matrix", + "build_uk_rowwise_local_surface_matrix", "clone_entity_frame", "clone_uk_dataset_tables_with_ladder_geography", "expected_uk_ladder_area_support", @@ -760,6 +786,7 @@ "derive_frs_education", "derive_frs_employment", "derive_frs_legacy_proxies", + "drop_injected_measure_inputs", "employment_band_name", "fill_support_channel_from_source", "format_uk_release_id", @@ -780,6 +807,7 @@ "hmrc_band_name", "id_multiplier_for_values", "infer_ni_dz_constituencies_from_postcodes", + "inject_measure_inputs", "join_uk_oa_ladder_layers", "load_england_lad_region_lookup", "load_england_wales_oa_constituencies", @@ -817,6 +845,7 @@ "metric_names_from_target_profile", "metric_tables_by_area_group", "optimize_firm_weights", + "prepare_uk_target_frame", "prepare_geography_crosswalk", "read_uk_single_year_weight_metadata", "read_uk_firm_source_data", @@ -831,6 +860,8 @@ "uk_firm_source_data_from_frames", "uk_firm_source_data_from_ledger_facts", "uk_calibration_diagnostics_payload", + "uk_support_limited_misses", + "uk_spine_source_family_units", "uk_frame_content_identity", "uk_dsa_policy", "uk_dwp_baseline_disability_rates", @@ -841,6 +872,9 @@ "uk_region_mix", "uk_area_support_summary", "uk_ladder_area_support_summary", + "uk_local_target_surface", + "uk_local_doctrine_with_overrides", + "uk_local_target_loss_weights", "uk_release_input_coverage_gate", "uk_release_input_coverage_required_columns", "uk_release_input_coverage_reviewed_exclusions", @@ -866,6 +900,8 @@ "write_geography_crosswalk", "write_uk_firm_population", "write_uk_calibration_diagnostics", + "load_bound_spine_sidecar", + "spine_provenance_from_sidecar", "write_uk_rowwise_dataset", "write_hmrc_replay_report", "UK_DEFAULT_ZERO_WEIGHT_STRATA", diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/battery_bindings.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/battery_bindings.py index e528b6ba3..e1d89e0d9 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/battery_bindings.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/battery_bindings.py @@ -100,6 +100,7 @@ _input_mass_reference_evidence_sha256, coerce_input_mass_reference_registry, coerce_reviewed_exclusions, + load_uk_reviewed_exclusion_register, uk_default_input_mass_reviewed_exclusions, uk_default_qrf_tail_reviewed_exclusions, uk_input_mass_parity_gate, @@ -811,10 +812,33 @@ def _evaluate_area_support( ) -> GateResult: kwargs = dict(parameters) resource = str(kwargs.pop("crosswalk_resource")) + exclusions_resource = str(kwargs.pop("exclusions_resource")) + records = load_uk_reviewed_exclusion_register( + None, + resource=exclusions_resource, + ) + clock = _exclusion_clock(context) + invalid = { + key: record + for key, record in records.items() + if record.expired(clock) or record.premature(clock) + } + if invalid: + return GateResult( + name="area_support", + passed=False, + failures=tuple( + f"{key}: reviewed exclusion is outside its approval window " + f"{record.approved_on}..{record.expires_on} at {clock.isoformat()}." + for key, record in sorted(invalid.items()) + ), + details={"invalid_reviewed_exclusions": sorted(invalid)}, + ) levels = tuple(str(level) for level in kwargs["geography_levels"]) return area_support_gate( context.artifacts["uk_area_support_summary"], area_roster=_local_area_roster(resource, levels), + reviewed_exclusions=_exclusion_payload(records), **kwargs, ) @@ -1467,9 +1491,10 @@ def _ledger_compile_parity_required_artifacts( "minimum_rows", "minimum_effective_sample_size", "minimum_distinct_sources", + "exclusions_resource", } ), - artifact_keys=frozenset({"uk_area_support_summary"}), + artifact_keys=frozenset({"uk_area_support_summary", "exclusions_evaluated_on"}), needs_frame=False, ), "per_family_fit": UKGateBinding( diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/calibration_run.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/calibration_run.py index 522383c77..6a53e5c5a 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/calibration_run.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/calibration_run.py @@ -462,7 +462,7 @@ def _run_uk_calibration_attempt( frame, _provenance = load_uk_national_frame(paths.input_h5) append_phase(state, "input_loaded") spine_sidecar_path = paths.input_h5.with_suffix(".build.json") - spine_sidecar = _load_bound_spine_sidecar(spine_sidecar_path, frame) + spine_sidecar = load_bound_spine_sidecar(spine_sidecar_path, frame) append_phase(state, "input_sidecar_bound") assert_calibration_input_finite(frame) append_phase(state, "input_finite") @@ -503,7 +503,7 @@ def _run_uk_calibration_attempt( else None ), "register": _register_census(register_registry, exclusion_receipt), - "spine_provenance": _spine_provenance_from_sidecar( + "spine_provenance": spine_provenance_from_sidecar( spine_sidecar_path, spine_sidecar, ), @@ -646,7 +646,7 @@ def _run_calibration_gate_battery( return payload -def _load_bound_spine_sidecar(path: Path, frame: Frame) -> dict[str, object]: +def load_bound_spine_sidecar(path: Path, frame: Frame) -> dict[str, object]: if not path.is_file(): raise ValueError(f"input H5 build sidecar absent: {path}") try: @@ -741,7 +741,7 @@ def _assert_spine_gate_report_passed( ) -def _spine_provenance_from_sidecar( +def spine_provenance_from_sidecar( path: Path, sidecar: Mapping[str, object], ) -> dict[str, object]: @@ -956,7 +956,7 @@ def _ledger_provenance(artifact: Any) -> dict[str, object]: ) -def _runtime_provenance() -> dict[str, str]: +def runtime_provenance() -> dict[str, str]: """The calibrating environment's package versions, for the build block.""" runtime = {"python": platform.python_version()} @@ -968,6 +968,12 @@ def _runtime_provenance() -> dict[str, str]: return runtime +# Compatibility aliases for the established internal call sites. +_load_bound_spine_sidecar = load_bound_spine_sidecar +_spine_provenance_from_sidecar = spine_provenance_from_sidecar +_runtime_provenance = runtime_provenance + + def _register_census( registry: TargetRegistry, exclusions: Mapping[str, Mapping[str, str]] ) -> dict[str, object]: diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/diagnostics.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/diagnostics.py index 7907b4d71..186e820cb 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/diagnostics.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/diagnostics.py @@ -38,6 +38,7 @@ "UK_DIAGNOSTICS_SCHEMA_VERSION", "UK_TARGET_GEOGRAPHY_LEVELS", "uk_calibration_diagnostics_payload", + "uk_support_limited_misses", "uk_target_geography_levels", "uk_weakest_areas_by_fit", "uk_weakest_families", @@ -181,11 +182,14 @@ def uk_weakest_areas_by_fit( for row in target_rows: metadata = row.get("metadata") if not isinstance(metadata, Mapping): - raise ValueError("UK area rollups require target metadata.") - level = _normalize_geography_level(metadata.get("area_type")) + continue + area_type = metadata.get("area_type") + if area_type is None: + continue + level = _normalize_geography_level(area_type) area_code = str(metadata.get("area_code") or "") if level not in {"constituency", "local_authority"} or not area_code: - raise ValueError("UK area rollups require local target area metadata.") + continue name, error = _finite_target_error(row) grouped.setdefault((level, area_code), []).append( (name, abs(error), _finite_loss_contribution(row)) @@ -280,6 +284,133 @@ def _country_for_area(area_code: str) -> str: ) from error +def _local_grain_column(frame: pd.DataFrame) -> str: + for column in ("grain", "area_type", "geography_level"): + if column in frame.columns: + return column + raise ValueError( + "UK local diagnostics require a grain, area_type, or geography_level column." + ) + + +def uk_support_limited_misses( + local_diagnostics: pd.DataFrame, + area_support: Mapping[str, pd.DataFrame], + *, + max_abs_relative_error: float, +) -> dict[str, dict[str, object]]: + """Relate failing local cells to each area's measured support.""" + + if not math.isfinite(max_abs_relative_error) or max_abs_relative_error < 0: + raise ValueError("max_abs_relative_error must be finite and non-negative.") + required = {"area_code", "abs_relative_error"} + missing = sorted(required - set(local_diagnostics.columns)) + if missing: + raise ValueError(f"UK local diagnostics are missing columns {missing}.") + grain_column = _local_grain_column(local_diagnostics) + result: dict[str, dict[str, object]] = {} + for raw_grain, support in sorted(area_support.items()): + grain = str(raw_grain) + required_support = { + "area_code", + "assigned_households", + "effective_sample_size", + "nonzero_source_households", + } + support_missing = sorted(required_support - set(support.columns)) + if support_missing: + raise ValueError( + f"UK area support for {grain!r} is missing columns {support_missing}." + ) + grain_aliases = {grain} + if grain == "la": + grain_aliases.add("local_authority") + elif grain == "local_authority": + grain_aliases.add("la") + cells = local_diagnostics.loc[ + local_diagnostics[grain_column].astype(str).isin(grain_aliases) + & local_diagnostics["area_code"].notna() + ].copy() + cells["abs_relative_error"] = pd.to_numeric( + cells["abs_relative_error"], errors="raise" + ) + failing = cells.loc[cells["abs_relative_error"] > max_abs_relative_error] + support_rows = support.copy() + support_rows["area_code"] = support_rows["area_code"].astype(str) + support_rows["effective_sample_size"] = pd.to_numeric( + support_rows["effective_sample_size"], errors="raise" + ) + bottom_cutoff = ( + float(support_rows["effective_sample_size"].quantile(0.1)) + if len(support_rows) + else None + ) + failing_with_support = failing.merge( + support_rows, on="area_code", how="left", validate="many_to_one" + ) + if ( + len(failing_with_support) + and failing_with_support["effective_sample_size"].isna().any() + ): + missing_areas = sorted( + failing_with_support.loc[ + failing_with_support["effective_sample_size"].isna(), "area_code" + ] + .astype(str) + .unique() + ) + raise ValueError( + f"UK area support for {grain!r} is missing failing areas {missing_areas}." + ) + share_bottom = ( + float( + (failing_with_support["effective_sample_size"] <= bottom_cutoff).mean() + ) + if len(failing_with_support) + else None + ) + worst = ( + cells.groupby("area_code", sort=True)["abs_relative_error"] + .max() + .reset_index(name="worst_abs_relative_error") + .merge(support_rows, on="area_code", how="left", validate="one_to_one") + ) + correlation = ( + float( + worst["worst_abs_relative_error"].corr( + worst["effective_sample_size"], method="spearman" + ) + ) + if len(worst) > 1 + else None + ) + if correlation is not None and not math.isfinite(correlation): + correlation = None + elif correlation is not None and math.isclose(abs(correlation), 1.0): + correlation = math.copysign(1.0, correlation) + worst = worst.sort_values( + ["worst_abs_relative_error", "area_code"], + ascending=[False, True], + kind="stable", + ).head(10) + result[grain] = { + "n_failing_cells": int(len(failing)), + "share_failing_cells_in_bottom_ess_decile": share_bottom, + "spearman_worst_abs_relative_error_vs_ess": correlation, + "worst_areas": [ + { + "area_code": str(row["area_code"]), + "worst_abs_relative_error": float(row["worst_abs_relative_error"]), + "rows": int(row["assigned_households"]), + "ess": float(row["effective_sample_size"]), + "sources": int(row["nonzero_source_households"]), + } + for _, row in worst.iterrows() + ], + } + return result + + def _as_weights(values: Sequence[float] | np.ndarray) -> np.ndarray: """Return one finite, non-negative, non-empty weight vector.""" diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/ledger_targets.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/ledger_targets.py index 35e29428d..f6fc86e48 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/ledger_targets.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/ledger_targets.py @@ -3,8 +3,10 @@ from __future__ import annotations import json +import math from collections.abc import Iterable, Mapping from dataclasses import dataclass +from functools import lru_cache from importlib import resources as importlib_resources from typing import Any @@ -27,11 +29,18 @@ materialize_target_bindings, ) from microcosm.build.uk_runtime.cgt_calibration import uk_cgt_annual_exempt_amount +from microcosm.build.uk_runtime.ladder_targets import ( + constituency_household_targets, + local_authority_household_targets, +) +from microcosm.build.uk_runtime.local_target_census import family_for_metric from microcosm.build.uk_runtime.local_targets import ( + AREA_TYPE_TO_LEDGER_GEOGRAPHY_LEVEL, area_groups_from_codes, load_uk_local_geography_contract, + metric_names, ) -from microcosm.calibrate import TargetRegistry +from microcosm.calibrate import TargetRegistry, TargetSpec from microcosm.frame import Frame @@ -44,6 +53,7 @@ class UKLedgerTargetCompilation: LOCAL_REGISTRY_PARITY_FIXTURE_RESOURCE = "local_registry_parity_fixture_2025.json" +UK_LOCAL_TARGET_REFERENCE_MEMBERSHIP_RESOURCE = "local_target_reference_membership.json" UK_POPULATION_TARGETS_RESOURCE = "uk_population_targets.json" UK_NATIONAL_TARGET_GEOGRAPHY_LEVELS = frozenset({"country", "region"}) _UK_LOCAL_FIXTURE_METRIC_ALIASES = { @@ -89,6 +99,59 @@ def _uk_cross_grain_leg_of_area(area_code: str) -> str: higher_target_ids=("dwp.uc.households",), lower_side="contract:dwp.uc.households_by_area", ), + # The national ONS controls use inclusive integer-age bands (0--9), while + # local targets use equivalent half-open encodings (0--10), so their + # signatures cannot match directly. These bridges let the K02000001 UK + # control rescale both constituency and local-authority bands over its + # England/Wales/Scotland/Northern Ireland legs. + CrossGrainBridge( + bridge_id="national_age_0_9_vs_local_age_0_10", + concept="uk.person.count", + higher_target_ids=("ons.population.age_0_9_by_region",), + lower_side="contract:ons.age.0_10", + ), + CrossGrainBridge( + bridge_id="national_age_10_19_vs_local_age_10_20", + concept="uk.person.count", + higher_target_ids=("ons.population.age_10_19_by_region",), + lower_side="contract:ons.age.10_20", + ), + CrossGrainBridge( + bridge_id="national_age_20_29_vs_local_age_20_30", + concept="uk.person.count", + higher_target_ids=("ons.population.age_20_29_by_region",), + lower_side="contract:ons.age.20_30", + ), + CrossGrainBridge( + bridge_id="national_age_30_39_vs_local_age_30_40", + concept="uk.person.count", + higher_target_ids=("ons.population.age_30_39_by_region",), + lower_side="contract:ons.age.30_40", + ), + CrossGrainBridge( + bridge_id="national_age_40_49_vs_local_age_40_50", + concept="uk.person.count", + higher_target_ids=("ons.population.age_40_49_by_region",), + lower_side="contract:ons.age.40_50", + ), + CrossGrainBridge( + bridge_id="national_age_50_59_vs_local_age_50_60", + concept="uk.person.count", + higher_target_ids=("ons.population.age_50_59_by_region",), + lower_side="contract:ons.age.50_60", + ), + CrossGrainBridge( + bridge_id="national_age_60_69_vs_local_age_60_70", + concept="uk.person.count", + higher_target_ids=("ons.population.age_60_69_by_region",), + lower_side="contract:ons.age.60_70", + ), + CrossGrainBridge( + bridge_id="national_age_70_79_vs_local_age_70_80", + concept="uk.person.count", + higher_target_ids=("ons.population.age_70_79_by_region",), + lower_side="contract:ons.age.70_80", + ), ) # A future move of these declarations into country-package spec JSON follows # the country-owned specification direction established in microcosm#159. @@ -222,6 +285,93 @@ def load_uk_local_area_crosswalk() -> dict[str, Any]: ) +def load_uk_local_target_reference_membership() -> dict[str, Any]: + """Load the committed local target membership and signed deferrals.""" + + return json.loads( + importlib_resources.files("microcosm.build.uk") + .joinpath(UK_LOCAL_TARGET_REFERENCE_MEMBERSHIP_RESOURCE) + .read_text(encoding="utf-8") + ) + + +def _uk_licensed_empty_legs_from_membership( + membership: Mapping[str, Any], +) -> dict[str, frozenset[str]]: + """Derive wholly deferred target legs from committed membership rosters.""" + + areas_by_level = membership.get("areas_by_geography_level") + if not isinstance(areas_by_level, Mapping): + raise ValueError( + "UK local target membership must expose areas_by_geography_level." + ) + roster_by_level_leg: dict[tuple[str, str], set[str]] = {} + for geography_level, raw_area_ids in areas_by_level.items(): + if not isinstance(raw_area_ids, (list, tuple)): + raise ValueError( + f"UK local target membership roster {geography_level!r} must be a list." + ) + for raw_area_id in raw_area_ids: + area_id = str(raw_area_id).strip() + if not area_id: + raise ValueError( + "UK local target membership rosters must not contain blank " + "area ids." + ) + leg = _uk_cross_grain_leg_of_area(area_id) + roster_by_level_leg.setdefault((str(geography_level), leg), set()).add( + area_id + ) + + signed_deferrals = membership.get("signed_deferrals", ()) + if not isinstance(signed_deferrals, (list, tuple)): + raise ValueError("UK local target membership signed_deferrals must be a list.") + deferred_by_target_level_leg: dict[tuple[str, str, str], set[str]] = {} + for deferral in signed_deferrals: + if not isinstance(deferral, Mapping): + raise ValueError( + "UK local target membership signed deferrals must be mappings." + ) + target_id = str(deferral.get("target_id", "")).strip() + geography_level = str(deferral.get("geography_level", "")).strip() + raw_area_ids = deferral.get("area_ids") + if ( + not target_id + or not geography_level + or not isinstance(raw_area_ids, (list, tuple)) + ): + raise ValueError( + "UK local target membership signed deferrals must name a " + "target_id, geography_level, and area_ids list." + ) + for raw_area_id in raw_area_ids: + area_id = str(raw_area_id).strip() + leg = _uk_cross_grain_leg_of_area(area_id) + roster = roster_by_level_leg.get((geography_level, leg), set()) + if area_id not in roster: + raise ValueError( + "UK local target membership signed deferral area " + f"{area_id!r} is absent from the {geography_level!r} roster." + ) + deferred_by_target_level_leg.setdefault( + (target_id, geography_level, leg), set() + ).add(area_id) + + licensed: dict[str, set[str]] = {} + for ( + target_id, + geography_level, + leg, + ), deferred in deferred_by_target_level_leg.items(): + roster = roster_by_level_leg[(geography_level, leg)] + if roster and deferred == roster: + licensed.setdefault(target_id, set()).add(leg) + return { + target_id: frozenset(sorted(legs)) + for target_id, legs in sorted(licensed.items()) + } + + def compile_uk_local_target_registry( facts: Iterable[Mapping[str, Any]], *, @@ -623,6 +773,7 @@ def to_frame(self) -> Frame: ) +@lru_cache(maxsize=2) def _uk_contract_targets( *, national_only: bool = True, @@ -643,9 +794,70 @@ def _uk_contract_targets( } +def _spec_geography(spec: TargetSpec) -> tuple[str, str]: + """Resolve one compiled target's local or Ledger geography spelling.""" + + metadata = spec.metadata + + def spelling(prefix: str, label: str) -> tuple[str, str] | None: + level_key = f"{prefix}geography_level" + id_key = f"{prefix}geography_id" + if level_key not in metadata and id_key not in metadata: + return None + level = str(metadata.get(level_key) or "").strip() + geography_id = str(metadata.get(id_key) or "").strip() + if not level or not geography_id: + raise ValueError( + f"UK target {spec.name!r} has blank {label} geography " + f"(level={level!r}, id={geography_id!r})." + ) + return level, geography_id + + local = spelling("", "local") + ledger = spelling("ledger_", "ledger") + if local is not None and ledger is not None and local != ledger: + raise ValueError( + f"UK target {spec.name!r} geography spellings disagree: " + f"local={local!r}, ledger={ledger!r}." + ) + resolved = local or ledger + if resolved is None: + raise ValueError( + f"UK target {spec.name!r} names no geography under either the " + "local or Ledger metadata spelling." + ) + + level, geography_id = resolved + if local is None or level in UK_NATIONAL_TARGET_GEOGRAPHY_LEVELS: + contract_target_id = str( + metadata.get("contract_target_id", spec.name.split("@", 1)[0]) + ) + contract = _uk_contract_targets(national_only=False).get(contract_target_id) + if contract is None: + raise ValueError( + f"UK target {spec.name!r} references unknown contract target " + f"{contract_target_id!r}." + ) + declared_levels = tuple( + str(value).strip() + for value in contract.get("geography_levels") or () + if str(value).strip() + ) + if level not in declared_levels: + raise ValueError( + f"UK target {spec.name!r} resolved national geography level " + f"{level!r}, which disagrees with contract target " + f"{contract_target_id!r} levels {list(declared_levels)!r}." + ) + return level, geography_id + + def apply_uk_cross_grain_reconciliation( local_frame: pd.DataFrame, bound_higher_targets: Iterable[str], + *, + reviewed_unbound_higher_targets: Mapping[str, Mapping[str, object]] | None = None, + licensed_empty_legs: Mapping[str, frozenset[str]] | None = None, ) -> tuple[pd.DataFrame, dict[str, Any]]: """Apply the standing UK rule to a bound mixed-grain target surface. @@ -654,12 +866,206 @@ def apply_uk_cross_grain_reconciliation( cannot be bypassed. """ + licences = ( + _uk_licensed_empty_legs_from_membership( + load_uk_local_target_reference_membership() + ) + if licensed_empty_legs is None + else licensed_empty_legs + ) return apply_cross_grain_reconciliation( local_frame, bound_higher_targets, _uk_contract_targets(national_only=False), UK_CROSS_GRAIN_RULE, + reviewed_unbound_higher_targets=reviewed_unbound_higher_targets, + licensed_empty_legs=licences, + ) + + +def uk_local_target_surface( + local_registry: TargetRegistry, + ladder: Any, + *, + bound_national_target_ids: Iterable[str], + period: int | str, + reviewed_unbound_higher_targets: Mapping[str, Mapping[str, object]] | None = None, + licensed_empty_legs: Mapping[str, frozenset[str]] | None = None, +) -> tuple[pd.DataFrame, dict[str, Any]]: + """Assemble and reconcile the present-cell UK local target surface.""" + + level_to_area_type = { + level: area_type + for area_type, level in AREA_TYPE_TO_LEDGER_GEOGRAPHY_LEVEL.items() + } + target_id_to_metric = { + target_id: metric for metric, target_id in _uk_local_metric_target_ids().items() + } + output_rows: list[dict[str, Any]] = [] + reconciliation_rows: list[dict[str, Any]] = [] + national_control_groups: dict[tuple[str, str], list[tuple[str, str, float]]] = {} + for spec in local_registry.specs: + geography_level, geography_id = _spec_geography(spec) + contract_target_id = str( + spec.metadata.get("contract_target_id", spec.name.split("@", 1)[0]) + ) + if geography_level in level_to_area_type: + area_type = level_to_area_type[geography_level] + metric = target_id_to_metric.get(contract_target_id) + if metric is None: + raise ValueError( + "UK local target surface cannot map contract target " + f"{contract_target_id!r} to a PolicyEngine metric." + ) + allowed = set(metric_names(area_type)) + if metric not in allowed: + raise ValueError( + f"UK local target surface metric {metric!r} is not declared " + f"for area_type {area_type!r}." + ) + output_position = len(output_rows) + output_rows.append( + { + "area_type": area_type, + "area_code": geography_id, + "metric": metric, + "value": float(spec.value), + "target_name": spec.name, + "family": family_for_metric(metric), + "source_family": spec.family, + "source": spec.source, + "period": period, + "contract_target_id": contract_target_id, + } + ) + reconciliation_rows.append( + { + "grain": area_type, + "geography_id": geography_id, + "target_id": f"contract:{contract_target_id}", + "value": float(spec.value), + "_output_position": output_position, + } + ) + elif geography_level in UK_NATIONAL_TARGET_GEOGRAPHY_LEVELS: + value = float(spec.value) + if not np.isfinite(value): + raise ValueError( + f"UK national target cell {spec.name!r} has non-finite " + f"value {value!r}." + ) + national_control_groups.setdefault( + (contract_target_id, geography_id), [] + ).append((spec.name, geography_level, value)) + else: + raise ValueError( + f"UK target {spec.name!r} names unsupported geography_level " + f"{geography_level!r}." + ) + + bridge_control_ids = { + target_id + for bridge in UK_CROSS_GRAIN_BRIDGES + for target_id in bridge.higher_target_ids + } + fanout_target_ids = { + target_id + for (target_id, _), cells in national_control_groups.items() + if len(cells) > 1 and target_id not in bridge_control_ids + } + fanout_targets_not_controls: list[dict[str, Any]] = [] + for (target_id, geography_id), cells in national_control_groups.items(): + cell_names = sorted(name for name, _, _ in cells) + geography_levels = sorted({level for _, level, _ in cells}) + if len(geography_levels) != 1: + raise ValueError( + f"UK national target {target_id!r} at {geography_id!r} has " + f"fan-out cells {cell_names} with mixed geography levels " + f"{geography_levels}." + ) + activated_sum = math.fsum(value for _, _, value in cells) + if not math.isfinite(activated_sum): + raise ValueError( + f"UK national target {target_id!r} at {geography_id!r} has " + f"fan-out cells {cell_names} with a non-finite summed total." + ) + if target_id in fanout_target_ids: + if len(cells) > 1: + fanout_targets_not_controls.append( + { + "target_id": target_id, + "geography_id": geography_id, + "cells": len(cells), + "cell_names": cell_names, + "activated_sum": activated_sum, + "reason": ( + "The activated cells are a band subset, so this " + "distribution is not a cross-grain control." + ), + } + ) + continue + reconciliation_rows.extend( + { + "grain": geography_level, + "geography_id": geography_id, + "target_id": target_id, + "value": value, + "_output_position": None, + } + for _, geography_level, value in cells + ) + + bound_control_ids = tuple( + str(target_id) + for target_id in bound_national_target_ids + if str(target_id) not in fanout_target_ids + ) + + for area_type, targets in ( + ("constituency", constituency_household_targets(ladder)), + ("la", local_authority_household_targets(ladder)), + ): + for row in targets.itertuples(index=False): + output_position = len(output_rows) + output_rows.append( + { + "area_type": area_type, + "area_code": str(row.code), + "metric": "households", + "value": float(row.households), + "target_name": ( + f"external:census_households/households@{row.code}" + ), + "family": "census_households", + "source": "UK OA geography ladder", + "period": period, + "contract_target_id": "external:census_households/households", + } + ) + reconciliation_rows.append( + { + "grain": area_type, + "geography_id": str(row.code), + "target_id": "external:census_households/households", + "value": float(row.households), + "_output_position": output_position, + } + ) + + reconciliation = pd.DataFrame(reconciliation_rows) + reconciled, receipt = apply_uk_cross_grain_reconciliation( + reconciliation[["grain", "geography_id", "target_id", "value"]], + bound_control_ids, + reviewed_unbound_higher_targets=reviewed_unbound_higher_targets, + licensed_empty_legs=licensed_empty_legs, ) + receipt["fanout_targets_not_controls"] = fanout_targets_not_controls + for position, value in enumerate(reconciled["value"].to_numpy(dtype=np.float64)): + output_position = reconciliation.iloc[position]["_output_position"] + if pd.notna(output_position): + output_rows[int(output_position)]["value"] = float(value) + return pd.DataFrame(output_rows), receipt def _validate_uk_cross_grain_declarations() -> None: diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/local_doctrine.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/local_doctrine.py index ee93d3c7e..300ab1c11 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/local_doctrine.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/local_doctrine.py @@ -26,7 +26,8 @@ from __future__ import annotations -from dataclasses import dataclass +from collections.abc import Mapping, Sequence +from dataclasses import dataclass, fields, replace import numpy as np @@ -35,6 +36,8 @@ "UK_LOCAL_SOLVE_DOCTRINE", "UK_LOCAL_TARGET_LOSS_CAP", "UKLocalSolveDoctrine", + "uk_local_doctrine_with_overrides", + "uk_local_target_loss_weights", ] #: Declared uniform loss cap for the UK local solve (scaled absolute @@ -56,7 +59,8 @@ UK_LOCAL_MAX_WEIGHT_RATIO = 100.0 _ALLOWED_SCALE_RULES = ("default_target_loss_scales",) -_ALLOWED_TARGET_WEIGHT_RULES = ("uniform",) +_ALLOWED_TARGET_WEIGHT_RULES = ("uniform", "grain_equal") +_OVERRIDABLE_FIELDS = frozenset({"target_weight_rule"}) @dataclass(frozen=True) @@ -111,3 +115,55 @@ def __post_init__(self) -> None: #: The reviewed doctrine instance every release-path solve uses. UK_LOCAL_SOLVE_DOCTRINE = UKLocalSolveDoctrine() + + +def uk_local_target_loss_weights( + grain_labels: Sequence[str], + *, + rule: str, +) -> np.ndarray | None: + """Derive doctrine weights from row-grain labels, never target knobs.""" + + if rule not in _ALLOWED_TARGET_WEIGHT_RULES: + raise ValueError( + f"target_weight_rule must be one of {_ALLOWED_TARGET_WEIGHT_RULES}, " + f"got {rule!r}." + ) + if rule == "uniform": + return None + from microcosm.build.uk_runtime.national_doctrine import ( + uk_national_target_loss_weights, + ) + + return uk_national_target_loss_weights(grain_labels, rule="family_equal") + + +def uk_local_doctrine_with_overrides( + doctrine: UKLocalSolveDoctrine, + overrides: Mapping[str, object], +) -> tuple[UKLocalSolveDoctrine, dict[str, dict[str, object]]]: + """Apply the sole reviewed local override and return its receipt.""" + + if not isinstance(doctrine, UKLocalSolveDoctrine): + raise TypeError("doctrine must be a UKLocalSolveDoctrine instance.") + fields_by_name = {field.name for field in fields(UKLocalSolveDoctrine)} + unknown = sorted(set(overrides) - fields_by_name) + if unknown: + raise ValueError( + f"unknown UK local doctrine field(s) {unknown}; frozen fields are " + f"{sorted(fields_by_name)}." + ) + frozen = sorted(set(overrides) - _OVERRIDABLE_FIELDS) + if frozen: + raise ValueError( + "UK local doctrine field(s) are reviewed constants, not knobs: " + f"{frozen}; overridable fields are {sorted(_OVERRIDABLE_FIELDS)}." + ) + effective_doctrine = replace(doctrine, **overrides) + receipt: dict[str, dict[str, object]] = {} + for name in sorted(_OVERRIDABLE_FIELDS): + default = getattr(doctrine, name) + effective = getattr(effective_doctrine, name) + if effective != default: + receipt[name] = {"default": default, "effective": effective} + return effective_doctrine, receipt diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/local_rowwise.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/local_rowwise.py index 4db180858..80b7e7420 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/local_rowwise.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/local_rowwise.py @@ -21,8 +21,8 @@ from __future__ import annotations import warnings -from collections.abc import Mapping, Sequence -from dataclasses import dataclass +from collections.abc import Callable, Mapping, Sequence +from dataclasses import dataclass, replace from datetime import date from typing import Any @@ -35,6 +35,7 @@ from microcosm.build.uk_runtime.local_doctrine import ( UK_LOCAL_SOLVE_DOCTRINE, UK_LOCAL_TARGET_LOSS_CAP, + uk_local_target_loss_weights, ) from microcosm.build.uk_runtime.local_targets import AREA_TYPES from microcosm.build.uk_runtime.national_frame import ( @@ -47,6 +48,7 @@ exclusion_evaluation_date, load_uk_reviewed_exclusion_register, ) +from microcosm.calibrate.registry import TargetRegistry from microcosm.calibrate.solve import ( CONSERVE_MASS, FREE_MASS, @@ -62,13 +64,15 @@ "UK_LOCAL_BINDING_ADJUDICATION_REGISTER_RESOURCE", "UKRowwiseDoctrineSolve", "UKRowwiseLocalMatrix", + "UKRowwiseNationalRows", "build_uk_rowwise_local_matrix", + "build_uk_rowwise_local_surface_matrix", "past_cap_census", "require_adjudicated_uk_local_binding", + "rotated_uk_local_holdout", "uk_area_support_summary", "uk_ladder_area_support_summary", "rowwise_calibration_mass_reason", - "rotated_uk_local_holdout", "rowwise_area_support_summary", "solve_uk_rowwise_weights_under_doctrine", ] @@ -83,10 +87,11 @@ class UKRowwiseLocalMatrix: """Sparse rowwise calibration surface: one column per cloned household. - ``metric_values`` retains the per-household metric matrix the constraint - rows were assembled from, so the declarative target expression the solve - hands to ``calibrate()`` derives from exactly the same numbers as the - hand-assembled sparse matrix. + The ``*_by_grain`` mappings are authoritative for a multi-grain problem. + The flat ``area_codes``, ``metric_names``, ``assigned_areas``, and + ``metric_values`` attributes remain populated for a single-grain problem + so existing callers retain their established interface; they are empty + for a multi-grain problem. """ matrix: sp.csr_matrix @@ -97,16 +102,29 @@ class UKRowwiseLocalMatrix: household_ids: tuple[Any, ...] assigned_areas: tuple[str, ...] metric_values: np.ndarray + area_codes_by_grain: Mapping[str, tuple[str, ...]] + metric_names_by_grain: Mapping[str, tuple[str, ...]] + assigned_areas_by_grain: Mapping[str, tuple[str, ...]] + metric_values_by_grain: Mapping[str, np.ndarray] @property def n_areas(self) -> int: - return len(self.area_codes) + return sum(len(codes) for codes in self.area_codes_by_grain.values()) @property def n_households(self) -> int: return len(self.household_ids) +@dataclass(frozen=True) +class UKRowwiseNationalRows: + """Materialized national targets held fixed in the joint local solve.""" + + targets: TargetSet + registry: TargetRegistry + families: tuple[str, ...] + + @dataclass(frozen=True) class UKRowwiseDoctrineSolve: """A doctrine solve's calibrated frame and its solve evidence. @@ -124,11 +142,14 @@ class UKRowwiseDoctrineSolve: weights: np.ndarray initial_weights: np.ndarray diagnostics: pd.DataFrame + national_diagnostics: pd.DataFrame loss_trajectory: np.ndarray initial_loss: float final_loss: float n_nonzero: int past_cap_census: Mapping[str, Any] + national_past_cap_census: Mapping[str, Any] + all_past_cap_census: Mapping[str, Any] binding_adjudications: Mapping[str, Any] @@ -245,50 +266,21 @@ def build_uk_rowwise_local_matrix( code_column: Target frame column holding area codes. """ - from microcosm.build.uk_runtime.local_geography import align_area_targets - - if metrics.empty: - raise ValueError("metrics must not be empty.") - if metrics.index.has_duplicates: - duplicates = metrics.index[metrics.index.duplicated()].unique() - raise ValueError( - "metrics household index must be unique; duplicate value(s): " - f"{list(map(str, duplicates[:5]))}." - ) - metric_labels = [str(column) for column in metrics.columns] - duplicate_labels = sorted( - {label for label in metric_labels if metric_labels.count(label) > 1} + from microcosm.build.uk_runtime.local_geography import ( + _AREA_METADATA_COLUMNS, + align_area_targets, ) - if duplicate_labels: - raise ValueError(f"metrics has duplicate column label(s): {duplicate_labels}.") - from microcosm.build.uk_runtime.local_geography import _AREA_METADATA_COLUMNS - metadata_collisions = sorted(set(metric_labels) & set(_AREA_METADATA_COLUMNS)) + names = tuple(str(column) for column in metrics.columns) + duplicate_names = sorted({name for name in names if names.count(name) > 1}) + if duplicate_names: + raise ValueError(f"metrics has duplicate column label(s): {duplicate_names}.") + metadata_collisions = sorted(set(names) & set(_AREA_METADATA_COLUMNS)) if metadata_collisions: raise ValueError( "metric column(s) collide with target-frame metadata names and " f"would silently calibrate metadata: {metadata_collisions}." ) - values = metrics.to_numpy(dtype=np.float64) - if not np.isfinite(values).all(): - raise ValueError("metrics must be finite.") - - if isinstance(assigned_areas, pd.Series): - if not assigned_areas.index.equals(metrics.index): - raise ValueError( - "assigned_areas index must align with the metrics household index." - ) - assigned = assigned_areas.astype(str).to_numpy() - else: - assigned = np.asarray([str(code) for code in assigned_areas], dtype=object) - if len(assigned) != len(metrics): - raise ValueError( - "assigned_areas must align with metrics rows, got " - f"{len(assigned)} assignments for {len(metrics)} rows." - ) - blank = np.array([not code.strip() for code in assigned.tolist()]) - if blank.any(): - raise ValueError(f"assigned_areas contains {int(blank.sum())} blank code(s).") if area_codes is None: if code_column not in targets.columns: @@ -298,80 +290,307 @@ def build_uk_rowwise_local_matrix( ) area_codes = targets[code_column].astype(str).tolist() codes = tuple(str(code) for code in area_codes) - if len(set(codes)) != len(codes): - raise ValueError("area_codes must be unique.") - - uncovered = sorted(set(assigned.tolist()) - set(codes)) - if uncovered: - raise ValueError( - "target surface does not cover assigned area(s): " - f"{uncovered[:5]}. Every assigned area must carry targets — " - "local misses are support or target work, never silent " - "exclusion." - ) - - metric_names = tuple(str(column) for column in metrics.columns) - target_values = align_area_targets( + aligned = align_area_targets( targets, codes, - metric_names=metric_names, + metric_names=names, code_column=code_column, ) - - area_index_by_code = {code: index for index, code in enumerate(codes)} - household_area_index = np.asarray( - [area_index_by_code[code] for code in assigned.tolist()], - dtype=np.int64, + surface = pd.DataFrame( + [ + { + "area_type": area_type, + "area_code": code, + "metric": metric, + "value": float(aligned.loc[code, metric]), + "target_name": f"{area_type}/{code}/{metric}", + "family": local_target_census.family_for_metric(metric), + } + for code in codes + for metric in names + ] + ) + return build_uk_rowwise_local_surface_matrix( + {area_type: metrics}, + {area_type: assigned_areas}, + surface, + area_codes_by_grain={area_type: codes}, + area_metric_order_by_grain={area_type: names}, + _canonical_surface_order=False, ) - n_metrics = len(metric_names) - n_households = len(metrics) - rows: list[np.ndarray] = [] - cols: list[np.ndarray] = [] - data: list[np.ndarray] = [] - target_rows: list[dict[str, Any]] = [] - for area_index, area_code in enumerate(codes): - members = np.flatnonzero(household_area_index == area_index) - for metric_index, metric_name in enumerate(metric_names): - target_index = area_index * n_metrics + metric_index - target_rows.append( - { - "target_index": target_index, - "area_type": area_type, - "area_code": area_code, - "area_index": area_index, - "metric": metric_name, - "metric_index": metric_index, - "value": float(target_values.loc[area_code, metric_name]), - } + +def build_uk_rowwise_local_surface_matrix( + metrics_by_grain: Mapping[str, pd.DataFrame], + assigned_by_grain: Mapping[str, pd.Series | Sequence[str]], + surface: pd.DataFrame, + *, + area_codes_by_grain: Mapping[str, Sequence[str]], + area_metric_order_by_grain: Mapping[str, Sequence[str]] | None = None, + require_every_assigned_area_covered: bool = True, + _canonical_surface_order: bool = True, +) -> UKRowwiseLocalMatrix: + """Build one sparse matrix from present cells across UK local grains. + + Surface rows are long-format present cells; an absent cell contributes no + constraint row. The public path orders rows by grain, metric, and roster + area. ``_canonical_surface_order`` exists only for the dense compatibility + wrapper, whose established area-major row order is part of its contract. + """ + + from microcosm.build.uk_runtime.local_geography import _AREA_METADATA_COLUMNS + + required = { + "area_type", + "area_code", + "metric", + "value", + "target_name", + "family", + } + missing = sorted(required - set(surface.columns)) + if missing: + raise ValueError(f"surface is missing required column(s): {missing}.") + if surface.empty: + raise ValueError("surface must contain at least one present cell.") + grains = tuple(grain for grain in AREA_TYPES if grain in metrics_by_grain) + unknown_grains = sorted(set(metrics_by_grain) - set(AREA_TYPES)) + if unknown_grains: + raise ValueError(f"unsupported area_type value(s): {unknown_grains}.") + if not grains: + raise ValueError("metrics_by_grain must contain a supported UK local grain.") + for label, mapping in ( + ("assigned_by_grain", assigned_by_grain), + ("area_codes_by_grain", area_codes_by_grain), + ): + if set(mapping) != set(grains): + raise ValueError( + f"{label} grains must equal metrics_by_grain grains; got " + f"{sorted(mapping)} vs {sorted(grains)}." ) - if len(members) == 0: - continue - column_values = values[members, metric_index] - nonzero = np.flatnonzero(column_values) - if len(nonzero) == 0: - continue - rows.append(np.full(len(nonzero), target_index, dtype=np.int64)) - cols.append(members[nonzero].astype(np.int64)) - data.append(column_values[nonzero].astype(np.float64, copy=False)) - - if rows: - row_array = np.concatenate(rows) - col_array = np.concatenate(cols) - data_array = np.concatenate(data) + surface_grains = set(surface["area_type"].astype(str)) + if not surface_grains <= set(grains): + raise ValueError( + "surface contains unsupported or unmaterialized area_type value(s): " + f"{sorted(surface_grains - set(grains))}." + ) + if surface.duplicated(["area_type", "area_code", "metric"]).any(): + duplicates = surface.loc[ + surface.duplicated(["area_type", "area_code", "metric"], keep=False), + ["area_type", "area_code", "metric"], + ].drop_duplicates() + raise ValueError( + "surface has duplicate (area_type, area_code, metric) cell(s): " + f"{[tuple(row) for row in duplicates.head(5).to_numpy()]}." + ) + values = surface["value"].to_numpy(dtype=np.float64) + if not np.isfinite(values).all(): + raise ValueError("surface values must be finite.") + for column in ("area_type", "area_code", "metric", "target_name", "family"): + blank = surface[column].astype(str).str.strip().eq("") + if blank.any(): + raise ValueError( + f"surface column {column!r} contains {int(blank.sum())} blank value(s)." + ) + + household_index: pd.Index | None = None + metric_values_by_grain: dict[str, np.ndarray] = {} + metric_names_by_grain: dict[str, tuple[str, ...]] = {} + assigned_areas_by_grain: dict[str, tuple[str, ...]] = {} + area_codes_normalized: dict[str, tuple[str, ...]] = {} + household_area_index_by_grain: dict[str, np.ndarray] = {} + for grain in grains: + metrics = metrics_by_grain[grain] + if metrics.empty: + raise ValueError(f"metrics_by_grain[{grain!r}] must not be empty.") + if metrics.index.has_duplicates: + duplicates = metrics.index[metrics.index.duplicated()].unique() + raise ValueError( + f"metrics_by_grain[{grain!r}] household index must be unique; " + f"duplicate value(s): {list(map(str, duplicates[:5]))}." + ) + if household_index is None: + household_index = metrics.index + elif not metrics.index.equals(household_index): + raise ValueError( + "all grains must share the identical household index in the " + f"identical order; {grain!r} does not align." + ) + labels = [str(column) for column in metrics.columns] + duplicates = sorted({label for label in labels if labels.count(label) > 1}) + if duplicates: + raise ValueError( + f"metrics_by_grain[{grain!r}] has duplicate column label(s): " + f"{duplicates}." + ) + collisions = sorted(set(labels) & set(_AREA_METADATA_COLUMNS)) + if collisions: + raise ValueError( + "metric column(s) collide with target-frame metadata names and " + f"would silently calibrate metadata: {collisions}." + ) + order = tuple( + str(name) + for name in ( + labels + if area_metric_order_by_grain is None + else area_metric_order_by_grain[grain] + ) + ) + if len(set(order)) != len(order) or set(order) != set(labels): + raise ValueError( + f"area metric order for {grain!r} must name every metric exactly once." + ) + metric_names_by_grain[grain] = order + metric_values = metrics.loc[:, list(order)].to_numpy(dtype=np.float64) + if not np.isfinite(metric_values).all(): + raise ValueError(f"metrics_by_grain[{grain!r}] must be finite.") + metric_values_by_grain[grain] = metric_values + + assigned_input = assigned_by_grain[grain] + if isinstance(assigned_input, pd.Series): + if not assigned_input.index.equals(metrics.index): + raise ValueError( + f"assigned_by_grain[{grain!r}] index must align with the " + "metrics household index." + ) + assigned = assigned_input.astype(str).to_numpy() + else: + assigned = np.asarray([str(code) for code in assigned_input], dtype=object) + if len(assigned) != len(metrics): + raise ValueError( + f"assigned_by_grain[{grain!r}] must align with metrics rows." + ) + if any(not code.strip() for code in assigned.tolist()): + raise ValueError(f"assigned_by_grain[{grain!r}] contains blank code(s).") + assigned_areas_by_grain[grain] = tuple(assigned.tolist()) + + codes = tuple(str(code) for code in area_codes_by_grain[grain]) + if len(set(codes)) != len(codes): + raise ValueError(f"area roster for {grain!r} must be unique.") + if any(not code.strip() for code in codes): + raise ValueError(f"area roster for {grain!r} contains blank code(s).") + off_roster_assignments = sorted(set(assigned.tolist()) - set(codes)) + if off_roster_assignments: + raise ValueError( + f"assigned area(s) are not on the {grain!r} roster: " + f"{off_roster_assignments[:5]}." + ) + grain_surface = surface.loc[surface["area_type"].astype(str) == grain] + off_roster_cells = sorted( + set(grain_surface["area_code"].astype(str)) - set(codes) + ) + if off_roster_cells: + raise ValueError( + f"surface cell area(s) are not on the {grain!r} roster: " + f"{off_roster_cells[:5]}." + ) + unknown_metrics = sorted(set(grain_surface["metric"].astype(str)) - set(order)) + if unknown_metrics: + raise ValueError( + f"surface metric(s) are absent from {grain!r} metrics: " + f"{unknown_metrics[:5]}." + ) + covered = set(grain_surface["area_code"].astype(str)) + uncovered = sorted(set(assigned.tolist()) - covered) + if require_every_assigned_area_covered and uncovered: + raise ValueError( + f"target surface does not cover assigned area(s) on {grain!r}: " + f"{uncovered[:5]}. Every assigned area must carry at least one " + "present cell." + ) + area_codes_normalized[grain] = codes + code_index = {code: index for index, code in enumerate(codes)} + household_area_index_by_grain[grain] = np.asarray( + [code_index[code] for code in assigned.tolist()], dtype=np.int32 + ) + + assert household_index is not None + ordered = surface.copy() + ordered["area_type"] = ordered["area_type"].astype(str) + ordered["area_code"] = ordered["area_code"].astype(str) + ordered["metric"] = ordered["metric"].astype(str) + if _canonical_surface_order: + grain_rank = {grain: index for index, grain in enumerate(AREA_TYPES)} + metric_rank = { + (grain, metric): index + for grain in grains + for index, metric in enumerate(metric_names_by_grain[grain]) + } + area_rank = { + (grain, code): index + for grain in grains + for index, code in enumerate(area_codes_normalized[grain]) + } + ordered["_grain_rank"] = ordered["area_type"].map(grain_rank) + ordered["_metric_rank"] = [ + metric_rank[(grain, metric)] + for grain, metric in ordered[["area_type", "metric"]].itertuples( + index=False, name=None + ) + ] + ordered["_area_rank"] = [ + area_rank[(grain, code)] + for grain, code in ordered[["area_type", "area_code"]].itertuples( + index=False, name=None + ) + ] + ordered = ordered.sort_values( + ["_grain_rank", "_metric_rank", "_area_rank"], kind="stable" + ).drop(columns=["_grain_rank", "_metric_rank", "_area_rank"]) + ordered = ordered.reset_index(drop=True) + + row_arrays: list[np.ndarray] = [] + col_arrays: list[np.ndarray] = [] + data_arrays: list[np.ndarray] = [] + target_rows: list[dict[str, Any]] = [] + passthrough_columns = [ + column + for column in ordered.columns + if column not in {"area_type", "area_code", "metric", "value"} + ] + for target_index, row in enumerate(ordered.itertuples(index=False)): + payload = row._asdict() + grain = str(payload["area_type"]) + code = str(payload["area_code"]) + metric = str(payload["metric"]) + area_index = area_codes_normalized[grain].index(code) + metric_index = metric_names_by_grain[grain].index(metric) + target_row = { + "target_index": target_index, + "area_type": grain, + "area_code": code, + "area_index": area_index, + "metric": metric, + "metric_index": metric_index, + "value": float(payload["value"]), + } + target_row.update({column: payload[column] for column in passthrough_columns}) + target_rows.append(target_row) + members = np.flatnonzero(household_area_index_by_grain[grain] == area_index) + if not len(members): + continue + column_values = metric_values_by_grain[grain][members, metric_index] + nonzero = np.flatnonzero(column_values) + if not len(nonzero): + continue + row_arrays.append(np.full(len(nonzero), target_index, dtype=np.int64)) + col_arrays.append(members[nonzero].astype(np.int64)) + data_arrays.append(column_values[nonzero].astype(np.float64, copy=False)) + if row_arrays: + row_array = np.concatenate(row_arrays) + col_array = np.concatenate(col_arrays) + data_array = np.concatenate(data_arrays) else: row_array = np.array([], dtype=np.int64) col_array = np.array([], dtype=np.int64) data_array = np.array([], dtype=np.float64) matrix = sp.csr_matrix( (data_array, (row_array, col_array)), - shape=(len(codes) * n_metrics, n_households), + shape=(len(target_rows), len(household_index)), dtype=np.float64, ) target_frame = pd.DataFrame(target_rows) - # Fail closed on unreachable rows: a nonzero target whose area has no - # supporting entries can never be hit and would sit invisibly inside the - # loss cap. Misses are support or target work, never silent exclusion. row_support = np.diff(matrix.indptr) unreachable = (row_support == 0) & ( target_frame["value"].to_numpy(dtype=np.float64) != 0.0 @@ -381,20 +600,47 @@ def build_uk_rowwise_local_matrix( f"{row.area_code}/{row.metric}" for row in target_frame.loc[unreachable].head(5).itertuples(index=False) ] + # The refusal is the evidence for support-or-target work, so it carries + # the full breakdown, not only five examples. + missing_rows = target_frame.loc[unreachable] + by_metric = { + str(key): int(value) + for key, value in missing_rows.groupby("metric").size().items() + } + by_grain = { + str(key): int(value) + for key, value in missing_rows.groupby("area_type").size().items() + } raise ValueError( f"{int(unreachable.sum())} target row(s) have a nonzero target " - f"but zero household support: {examples}. Add support (clones, " - "assignment) or fix the target surface." + f"but zero household support: {examples}; by metric {by_metric}; " + f"by grain {by_grain}. Add support (clones, assignment) or fix the " + "target surface." ) + single_grain = grains[0] if len(grains) == 1 else None return UKRowwiseLocalMatrix( matrix=matrix, targets=target_frame["value"].to_numpy(dtype=np.float64), target_frame=target_frame, - area_codes=codes, - metric_names=metric_names, - household_ids=tuple(metrics.index.tolist()), - assigned_areas=tuple(assigned.tolist()), - metric_values=values, + area_codes=( + area_codes_normalized[single_grain] if single_grain is not None else () + ), + metric_names=( + metric_names_by_grain[single_grain] if single_grain is not None else () + ), + household_ids=tuple(household_index.tolist()), + assigned_areas=( + assigned_areas_by_grain[single_grain] if single_grain is not None else () + ), + metric_values=( + metric_values_by_grain[single_grain] + if single_grain is not None + else np.empty((len(household_index), 0), dtype=np.float64) + ), + area_codes_by_grain=area_codes_normalized, + metric_names_by_grain=metric_names_by_grain, + assigned_areas_by_grain=assigned_areas_by_grain, + metric_values_by_grain=metric_values_by_grain, ) @@ -631,7 +877,10 @@ def _derive_uk_local_bound_families_from_target_frame( f"{missing} are required to derive bound families." ) derived: set[str] = set() - cells = target_frame[["area_type", "metric"]].drop_duplicates() + columns = ["area_type", "metric"] + if "family" in target_frame.columns: + columns.append("family") + cells = target_frame[columns].drop_duplicates() for row in cells.itertuples(index=False): area_type = str(row.area_type) if area_type not in AREA_TYPES: @@ -641,7 +890,11 @@ def _derive_uk_local_bound_families_from_target_frame( f"{list(AREA_TYPES)}." ) metric = str(row.metric) - family = local_target_census.family_for_metric(metric) + family = ( + str(row.family) + if "family" in target_frame.columns + else local_target_census.family_for_metric(metric) + ) if family not in family_rows: raise ValueError( "UK local binding declarations: target surface metric " @@ -681,14 +934,19 @@ def _rowwise_target_set(problem: UKRowwiseLocalMatrix) -> TargetSet: hand-assembled sparse matrix was built from. """ - assigned = np.asarray(problem.assigned_areas, dtype=object) - metric_columns = { - name: np.ascontiguousarray(problem.metric_values[:, index], dtype=np.float64) - for index, name in enumerate(problem.metric_names) - } - area_masks = { - code: (assigned == code).astype(np.float64) for code in problem.area_codes - } + area_indices: dict[str, np.ndarray] = {} + metric_columns: dict[tuple[str, str], np.ndarray] = {} + for grain, codes in problem.area_codes_by_grain.items(): + code_index = {code: index for index, code in enumerate(codes)} + area_indices[grain] = np.asarray( + [code_index[code] for code in problem.assigned_areas_by_grain[grain]], + dtype=np.int32, + ) + for index, name in enumerate(problem.metric_names_by_grain[grain]): + metric_columns[(grain, name)] = np.ascontiguousarray( + problem.metric_values_by_grain[grain][:, index], + dtype=np.float64, + ) def _constant_vector(values: np.ndarray): def vector(frame: Frame) -> np.ndarray: @@ -696,21 +954,43 @@ def vector(frame: Frame) -> np.ndarray: return vector + def _lazy_area_mask(indices: np.ndarray, area_index: int): + def vector(frame: Frame) -> np.ndarray: + return (indices == area_index).astype(np.float64) + + return vector + targets = [] for row in problem.target_frame.itertuples(index=False): + area_type = str(row.area_type) + metadata = { + "area_type": area_type, + "area_code": str(row.area_code), + "metric": str(row.metric), + } + for column in ("family", "target_name", "contract_target_id"): + if column in problem.target_frame.columns: + value = getattr(row, column) + if pd.notna(value) and str(value): + metadata[column] = str(value) targets.append( Target( - name=f"{row.area_type}/{row.area_code}/{row.metric}", + name=str( + row.target_name + if "target_name" in problem.target_frame.columns + else f"{row.area_type}/{row.area_code}/{row.metric}" + ), entity="household", - measure=_constant_vector(metric_columns[str(row.metric)]), + measure=_constant_vector(metric_columns[(area_type, str(row.metric))]), value=float(row.value), - filter=_constant_vector(area_masks[str(row.area_code)]), - source="uk_rowwise_local_surface", - metadata={ - "area_type": str(row.area_type), - "area_code": str(row.area_code), - "metric": str(row.metric), - }, + period=(row.period if "period" in problem.target_frame.columns else 0), + filter=_lazy_area_mask(area_indices[area_type], int(row.area_index)), + source=( + str(row.source) + if "source" in problem.target_frame.columns + else "uk_rowwise_local_surface" + ), + metadata=metadata, ) ) return TargetSet(targets) @@ -721,6 +1001,9 @@ def solve_uk_rowwise_weights_under_doctrine( problem: UKRowwiseLocalMatrix, *, bound_families: Sequence[str], + national_rows: UKRowwiseNationalRows | None = None, + target_weight_rule: str = "uniform", + restore: Callable[[Frame], Frame] | None = None, epochs: int = 512, learning_rate: float = 0.15, conserve_mass: bool = False, @@ -746,10 +1029,27 @@ def solve_uk_rowwise_weights_under_doctrine( doctrine = UK_LOCAL_SOLVE_DOCTRINE _require_uniform_target_surface(problem) + local_bound_families = tuple( + family for family in bound_families if not str(family).startswith("national/") + ) binding_adjudications = require_adjudicated_uk_local_binding( - bound_families, + local_bound_families, problem.target_frame, ) + national_families = ( + () + if national_rows is None + else tuple(f"national/{family}" for family in national_rows.families) + ) + declared_national = tuple( + str(family) for family in bound_families if str(family).startswith("national/") + ) + if set(declared_national) != set(national_families): + raise ValueError( + "joint rowwise solve national bound families disagree with the " + f"materialized registry: declared {sorted(declared_national)}, " + f"expected {sorted(national_families)}." + ) mass_reason = rowwise_calibration_mass_reason(bound_families) household = frame.table("household") @@ -789,7 +1089,43 @@ def solve_uk_rowwise_weights_under_doctrine( "revive them upstream with a recorded mass change." ) - target_set = _rowwise_target_set(problem) + local_target_set = _rowwise_target_set(problem) + if national_rows is not None: + if len(national_rows.targets) != len(national_rows.registry.specs): + raise ValueError( + "national target rows must align one-for-one with their registry: " + f"{len(national_rows.targets)} materialized rows vs " + f"{len(national_rows.registry.specs)} specs." + ) + for index, (target, spec) in enumerate( + zip( + national_rows.targets.targets, + national_rows.registry.specs, + strict=True, + ) + ): + if target.row_name != spec.to_target().row_name: + raise ValueError( + "materialized national target rows are not aligned with " + f"their registry: row {index} reports {target.row_name!r} " + f"where the registry declares {spec.to_target().row_name!r}." + ) + target_set = TargetSet( + [ + *local_target_set.targets, + *(() if national_rows is None else national_rows.targets.targets), + ] + ) + local_count = len(local_target_set) + national_count = len(target_set) - local_count + grain_labels = [ + *problem.target_frame["area_type"].astype(str).tolist(), + *(["national"] * national_count), + ] + target_loss_weights = uk_local_target_loss_weights( + grain_labels, + rule=target_weight_rule, + ) result = calibrate( frame, target_set, @@ -803,6 +1139,7 @@ def solve_uk_rowwise_weights_under_doctrine( l0_lambda=l0_lambda, budget_iters=budget_iters, seed=seed, + target_loss_weights=target_loss_weights, target_loss_cap=doctrine.target_loss_cap, ) if result.skipped: @@ -814,10 +1151,10 @@ def solve_uk_rowwise_weights_under_doctrine( f"target(s): {reasons}. The rowwise surface must compile whole — " "a skipped target is a harness bug, never a silent exclusion." ) - if len(result.diagnostics) != len(problem.target_frame): + if len(result.diagnostics) != len(target_set): raise ValueError( - "compiled diagnostics do not cover the declared target surface: " - f"{len(result.diagnostics)} rows vs {len(problem.target_frame)}." + "compiled diagnostics do not cover the declared joint target surface: " + f"{len(result.diagnostics)} rows vs {len(target_set)}." ) # The evidence tables consume diagnostics positionally, and diagnostics # order is documented only as "aligned to the compiled problem rows" — @@ -837,7 +1174,9 @@ def solve_uk_rowwise_weights_under_doctrine( "misattributed." ) - targets_vec = problem.targets + targets_vec = np.asarray( + [target.value for target in target_set.targets], dtype=np.float64 + ) initial_estimates = np.asarray( [diagnostic.initial_estimate for diagnostic in result.diagnostics], dtype=np.float64, @@ -860,24 +1199,65 @@ def solve_uk_rowwise_weights_under_doctrine( ) scales = default_target_loss_scales(targets_vec) + local_targets_vec = targets_vec[:local_count] + local_scales = scales[:local_count] + local_initial = initial_estimates[:local_count] + local_final = final_estimates[:local_count] diagnostics = problem.target_frame.copy() - diagnostics["target"] = targets_vec - diagnostics["initial_estimate"] = initial_estimates - diagnostics["final_estimate"] = final_estimates + diagnostics["target"] = local_targets_vec + diagnostics["initial_estimate"] = local_initial + diagnostics["final_estimate"] = local_final diagnostics["relative_error"] = np.divide( - final_estimates - targets_vec, - scales, - out=np.zeros_like(targets_vec, dtype=np.float64), - where=scales != 0, + local_final - local_targets_vec, + local_scales, + out=np.zeros_like(local_targets_vec, dtype=np.float64), + where=local_scales != 0, ) diagnostics["abs_relative_error"] = np.abs(diagnostics["relative_error"]) census = past_cap_census( + local_initial, + local_final, + local_targets_vec, + target_loss_cap=doctrine.target_loss_cap, + target_loss_scales=local_scales, + target_frame=problem.target_frame, + ) + national_specs = () if national_rows is None else national_rows.registry.specs + national_initial = initial_estimates[local_count:] + national_final = final_estimates[local_count:] + national_targets_vec = targets_vec[local_count:] + national_scales = scales[local_count:] + national_diagnostics = pd.DataFrame( + { + "name": [spec.to_target().row_name for spec in national_specs], + "family": [spec.family for spec in national_specs], + "target": national_targets_vec, + "initial_estimate": national_initial, + "final_estimate": national_final, + "relative_error": np.divide( + national_final - national_targets_vec, + national_scales, + out=np.zeros_like(national_targets_vec, dtype=np.float64), + where=national_scales != 0, + ), + } + ) + national_diagnostics["abs_relative_error"] = np.abs( + national_diagnostics["relative_error"] + ) + national_census = past_cap_census( + national_initial, + national_final, + national_targets_vec, + target_loss_cap=doctrine.target_loss_cap, + target_loss_scales=national_scales, + ) + all_census = past_cap_census( initial_estimates, final_estimates, targets_vec, target_loss_cap=doctrine.target_loss_cap, target_loss_scales=scales, - target_frame=problem.target_frame, ) # Reported in float64 from the compiled estimates (the trajectory head # is a float32 optimizer value), matching the pre-migration solver's @@ -886,7 +1266,7 @@ def solve_uk_rowwise_weights_under_doctrine( relative_error_loss( initial_estimates, targets_vec, - target_loss_weights=None, + target_loss_weights=target_loss_weights, target_loss_scales=scales, target_loss_cap=doctrine.target_loss_cap, ) @@ -900,26 +1280,43 @@ def solve_uk_rowwise_weights_under_doctrine( # ship if the kernel product held strata or metadata the rebuilt frame # lost (both trivially equal today; the guard is the boundary marker # for the day they are not). - calibrated_household = result.frame.table("household").copy() + clean_result = result.frame if restore is None else restore(result.frame) + slash_columns = { + entity: [ + str(column) + for column in clean_result.table(entity).columns + if "/" in str(column) + ] + for entity in clean_result.entities + } + slash_columns = { + entity: columns for entity, columns in slash_columns.items() if columns + } + if slash_columns: + raise ValueError( + "prepared slash-named measure columns survived the rowwise solve " + f"restore and cannot reach an H5 writer: {slash_columns}." + ) + calibrated_household = clean_result.table("household").copy() calibrated_household["household_weight"] = np.asarray( result.weights, dtype=np.float64 ) finished = uk_national_frame( - person=result.frame.table("person"), - benunit=result.frame.table("benunit"), + person=clean_result.table("person"), + benunit=clean_result.table("benunit"), household=calibrated_household, - time_period=uk_time_period(result.frame), + time_period=uk_time_period(clean_result), weight_kind=WeightKind.CALIBRATED, - mass_log=result.frame.mass_log, + mass_log=clean_result.mass_log, ) validate_uk_national_frame(finished) - if not result.frame.strata.equals(finished.strata): + if not clean_result.strata.equals(finished.strata): raise ValueError( "the calibrated frame carries strata the rebuilt UK national " "frame would drop; extend uk_national_frame to carry them " "before shipping a strata-bearing local solve." ) - if dict(result.frame.metadata) != dict(finished.metadata): + if dict(clean_result.metadata) != dict(finished.metadata): raise ValueError( "the calibrated frame carries metadata beyond the UK time " "period; the rebuild would drop it, so the solve refuses " @@ -931,19 +1328,47 @@ def solve_uk_rowwise_weights_under_doctrine( weights=np.asarray(result.weights, dtype=np.float64), initial_weights=np.asarray(result.initial_weights, dtype=np.float64), diagnostics=diagnostics, + national_diagnostics=national_diagnostics, loss_trajectory=np.asarray(result.loss_trajectory, dtype=np.float64), initial_loss=initial_loss, final_loss=float(result.final_loss), n_nonzero=int(result.n_nonzero), past_cap_census=census, + national_past_cap_census=national_census, + all_past_cap_census=all_census, binding_adjudications=binding_adjudications, ) +def _subset_rowwise_problem( + problem: UKRowwiseLocalMatrix, + target_indices: Sequence[int], +) -> UKRowwiseLocalMatrix: + indices = np.asarray(target_indices, dtype=np.int64) + if indices.ndim != 1: + raise ValueError("target_indices must be one-dimensional.") + if len(indices) == 0: + raise ValueError("a rowwise training problem must retain target rows.") + if (indices < 0).any() or (indices >= len(problem.targets)).any(): + raise ValueError("target_indices contains an out-of-range row.") + target_frame = problem.target_frame.iloc[indices].reset_index(drop=True).copy() + target_frame["target_index"] = np.arange(len(indices), dtype=np.int64) + return replace( + problem, + matrix=problem.matrix[indices].tocsr(), + targets=problem.targets[indices], + target_frame=target_frame, + ) + + def rotated_uk_local_holdout( frame: Frame, problem: UKRowwiseLocalMatrix, *, + bound_families: Sequence[str] | None = None, + national_rows: UKRowwiseNationalRows | None = None, + target_weight_rule: str = "uniform", + restore: Callable[[Frame], Frame] | None = None, epochs: int = 512, learning_rate: float = 0.15, conserve_mass: bool = False, @@ -952,7 +1377,7 @@ def rotated_uk_local_holdout( budget_iters: int = 10, solve_seed: int = 0, ) -> dict[str, object]: - """Run the fixed five-fold target rotation through actual local solves.""" + """Run five local-row rotations with national rows fixed in training.""" folds = rotated_folds( len(problem.targets), @@ -961,6 +1386,13 @@ def rotated_uk_local_holdout( ) all_indices = np.arange(len(problem.targets), dtype=np.int64) fold_rows: list[dict[str, object]] = [] + declared_national = [] + if bound_families is not None: + declared_national = [ + str(family) + for family in bound_families + if str(family).startswith("national/") + ] for fold_index, holdout_indices in enumerate(folds): train_indices = np.setdiff1d( all_indices, @@ -968,17 +1400,19 @@ def rotated_uk_local_holdout( assume_unique=True, ) train_problem = _subset_rowwise_problem(problem, train_indices) - train_families = sorted( - { - f"{local_target_census.family_for_metric(str(row.metric))}/" - f"{row.area_type}" - for row in train_problem.target_frame.itertuples(index=False) - } + train_families = _derive_uk_local_bound_families_from_target_frame( + train_problem.target_frame, + family_rows=_uk_local_census_family_rows( + local_target_census.load_uk_local_target_census() + ), ) train_solve = solve_uk_rowwise_weights_under_doctrine( frame, train_problem, - bound_families=train_families, + bound_families=[*train_families, *declared_national], + national_rows=national_rows, + target_weight_rule=target_weight_rule, + restore=restore, epochs=epochs, learning_rate=learning_rate, conserve_mass=conserve_mass, @@ -992,9 +1426,15 @@ def rotated_uk_local_holdout( problem.matrix[holdout_indices] @ train_solve.weights, dtype=np.float64, ).reshape(-1) + held_weights = uk_local_target_loss_weights( + problem.target_frame.iloc[holdout_indices]["area_type"].astype(str), + rule=target_weight_rule, + ) loss = relative_error_loss( held_estimates, held_targets, + target_loss_weights=held_weights, + target_loss_scales=default_target_loss_scales(held_targets), target_loss_cap=UK_LOCAL_TARGET_LOSS_CAP, ) fold_rows.append( @@ -1003,6 +1443,9 @@ def rotated_uk_local_holdout( "n_train_targets": int(len(train_indices)), "n_holdout_targets": int(len(holdout_indices)), "holdout_target_indices": holdout_indices.tolist(), + "training_national_rows": ( + 0 if national_rows is None else len(national_rows.targets) + ), "holdout_loss": loss, } ) @@ -1024,26 +1467,6 @@ def rotated_uk_local_holdout( } -def _subset_rowwise_problem( - problem: UKRowwiseLocalMatrix, - indices: np.ndarray, -) -> UKRowwiseLocalMatrix: - if indices.ndim != 1 or not len(indices): - raise ValueError("a rotated local training surface must be non-empty.") - target_frame = problem.target_frame.iloc[indices].reset_index(drop=True).copy() - target_frame["target_index"] = np.arange(len(target_frame), dtype=np.int64) - return UKRowwiseLocalMatrix( - matrix=problem.matrix[indices].tocsr(), - targets=np.asarray(problem.targets[indices], dtype=np.float64), - target_frame=target_frame, - area_codes=problem.area_codes, - metric_names=problem.metric_names, - household_ids=problem.household_ids, - assigned_areas=problem.assigned_areas, - metric_values=problem.metric_values, - ) - - def rowwise_area_support_summary( problem: UKRowwiseLocalMatrix, weights: Sequence[float], diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/local_target_census.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/local_target_census.py index 356566987..32e6ddd6d 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/local_target_census.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/local_target_census.py @@ -164,8 +164,8 @@ { "family": "uc_households", "description": ( - "Households on Universal Credit, and (constituency only, in code " - "today) the split by number of children." + "Universal Credit benefit units summed onto household rows, and " + "(constituency only) their split by benefit-unit num_children." ), "sources": ["dwp_stat_xplore_uc"], "adjudications": [_UC_GRAIN_FENCE_ID], @@ -558,13 +558,13 @@ "fenced_fact_count": None, "enforcement": FENCE_ENFORCEMENT_REVIEW, "rule": ( - "The runtime maps benefit-unit-level UC receipt to household " - "grain: a physical household containing two UC benefit units " - "contributes 2 to uc_households but 1 to a child band. DWP UC " - "statistics count UC claim households, which align with benefit " - "units rather than physical FRS households. Binding must " - "declare the grain crosswalk (or change the runtime metric) " - "before either UC family enters a solve." + "The runtime maps benefit-unit-level UC receipt and each UC " + "benefit unit's num_children band onto household rows by sum: a " + "physical household containing two UC benefit units contributes " + "2 to uc_households and one contribution to each unit's child " + "band. This aligns the runtime with DWP UC claim households, " + "which correspond to benefit units rather than physical FRS " + "households; binding must preserve this reviewed grain crosswalk." ), "authority": ( "DWP Universal Credit official statistics Stat-Xplore user " diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/local_targets.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/local_targets.py index 675fa3221..d0fec911c 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/local_targets.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/local_targets.py @@ -198,11 +198,13 @@ def compute_household_metrics( household_ids: Sequence[Any] | None = None, target_profile: Mapping[str, Any] | Any | None = None, ) -> pd.DataFrame: - """Compute local calibration metrics at household grain. + """Compute local calibration metrics on household rows. ``sim`` must provide ``calculate(variable, period=...)`` and ``map_result(values, from_entity, to_entity)`` methods compatible with - PolicyEngine-UK's microsimulation API. + PolicyEngine-UK's microsimulation API. UC child-band membership is + evaluated for each benefit unit and summed onto its household row, so a + multi-benefit-unit household can contribute to more than one band. """ _validate_area_type(area_type) @@ -241,15 +243,21 @@ def compute_household_metrics( matrix["uc_households"] = on_uc_hh if area_type == "constituency": - is_child = _values(_calculate(sim, "is_child", period)) - children_per_hh = _map_result(sim, is_child, "person", "household") - on_uc_bool = on_uc_hh > 0 - matrix["uc_hh_0_children"] = (on_uc_bool & (children_per_hh == 0)).astype(float) - matrix["uc_hh_1_child"] = (on_uc_bool & (children_per_hh == 1)).astype(float) - matrix["uc_hh_2_children"] = (on_uc_bool & (children_per_hh == 2)).astype(float) - matrix["uc_hh_3plus_children"] = (on_uc_bool & (children_per_hh >= 3)).astype( - float + num_children = _values(_calculate(sim, "num_children", period)) + on_uc_bool = on_uc > 0 + child_bands = ( + ("uc_hh_0_children", num_children == 0), + ("uc_hh_1_child", num_children == 1), + ("uc_hh_2_children", num_children == 2), + ("uc_hh_3plus_children", num_children >= 3), ) + for metric, in_band in child_bands: + matrix[metric] = _map_result( + sim, + on_uc_bool & in_band, + "benunit", + "household", + ) if area_type == "la": hbai_net_income = _values( diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/measure_simulation.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/measure_simulation.py index 9598efbd0..67e35d3d2 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/measure_simulation.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/measure_simulation.py @@ -120,9 +120,7 @@ def __init__( self._receipt = { "mode": mode, "source_path": str(source_path), - "policyengine_uk_version": str( - getattr(policyengine_uk, "__version__", "unknown") - ), + "policyengine_uk_version": _policyengine_uk_version(policyengine_uk), } self.contract_targets = _uk_contract_targets() @@ -313,6 +311,22 @@ def _values(raw: Any) -> np.ndarray: return np.asarray(raw.values if hasattr(raw, "values") else raw) +def _policyengine_uk_version(module: Any) -> str: + """The engine version: the module's own ``__version__`` when it declares + one (test doubles do), else the installed distribution metadata (the real + module exposes none), else ``unknown``.""" + + declared = getattr(module, "__version__", None) + if declared: + return str(declared) + try: + from importlib.metadata import version + + return str(version("policyengine-uk")) + except Exception: # pragma: no cover - metadata absent in odd envs + return "unknown" + + def _policyengine_uk_module() -> Any: import policyengine_uk diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/national_calibration.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/national_calibration.py index e27be91f4..93bffc2b8 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/national_calibration.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/national_calibration.py @@ -32,7 +32,10 @@ from microcosm.frame import Frame, WeightKind, Weights __all__ = [ + "CalibrationFrameAdapter", "UKNationalCalibrationStage", + "drop_injected_measure_inputs", + "inject_measure_inputs", "national_calibration_mass_reason", "uk_national_calibration_stage", ] @@ -339,7 +342,7 @@ def _doctrine_bounds(doctrine: UKNationalSolveDoctrine) -> dict[str, object]: } -def _inject_measure_inputs( +def inject_measure_inputs( adapter: UKFrameTargetAdapter, measure_inputs: Mapping[tuple[str, str], np.ndarray], ) -> None: @@ -347,7 +350,7 @@ def _inject_measure_inputs( adapter.tables[entity][variable] = values -def _drop_injected_measure_inputs( +def drop_injected_measure_inputs( adapter: UKFrameTargetAdapter, measure_inputs: Mapping[tuple[str, str], np.ndarray], original_columns: Mapping[str, set[str]], @@ -357,7 +360,7 @@ def _drop_injected_measure_inputs( adapter.tables[entity].drop(columns=[variable], inplace=True) -class _CalibrationFrameAdapter(UKFrameTargetAdapter): +class CalibrationFrameAdapter(UKFrameTargetAdapter): """The shared UK adapter plus the prepared-frame/restore lifecycle. Prepared measure columns are scratch state: they exist for constraint @@ -425,14 +428,14 @@ def prepare_uk_target_frame( resolution = None if measure_resolver is not None: resolution = resolve_target_measures( - lambda: _CalibrationFrameAdapter(frame), + lambda: CalibrationFrameAdapter(frame), registry, measure_resolver, period=period, ) - adapter = _CalibrationFrameAdapter(frame) + adapter = CalibrationFrameAdapter(frame) if resolution is not None: - _inject_measure_inputs(adapter, resolution.measure_inputs) + inject_measure_inputs(adapter, resolution.measure_inputs) materialized = materialize_uk_ledger_targets(adapter, registry, period=period) if materialized.skipped: raise RuntimeError( @@ -442,3 +445,9 @@ def prepare_uk_target_frame( return adapter.prepared_frame(), ( None if resolution is None else dict(resolution.receipt) ) + + +# Compatibility aliases for the established internal call sites. +_CalibrationFrameAdapter = CalibrationFrameAdapter +_inject_measure_inputs = inject_measure_inputs +_drop_injected_measure_inputs = drop_injected_measure_inputs diff --git a/packages/microcosm-build/src/microcosm/build/uk_runtime/national_sampling.py b/packages/microcosm-build/src/microcosm/build/uk_runtime/national_sampling.py index e6e9f13bf..35e5cb654 100644 --- a/packages/microcosm-build/src/microcosm/build/uk_runtime/national_sampling.py +++ b/packages/microcosm-build/src/microcosm/build/uk_runtime/national_sampling.py @@ -55,6 +55,8 @@ "UK_SAMPLE_RUNG_TOKENS", "UK_SAMPLE_SEED_DEFAULT", "sample_uk_national_frame", + "sample_uk_spine_frame", + "uk_spine_source_family_units", "uk_source_family_units", ] @@ -104,6 +106,10 @@ def _strict_bool(values: pd.Series, *, label: str) -> np.ndarray: def _int_column(values: pd.Series, *, label: str) -> np.ndarray: if values.isna().any(): raise ValueError(f"UK sample: {label} contains missing values.") + if not pd.api.types.is_integer_dtype(values.dtype): + raise ValueError( + f"UK sample: {label} must be integer-typed; got dtype {values.dtype}." + ) return values.to_numpy(dtype=np.int64) @@ -120,6 +126,155 @@ def _str_column(values: pd.Series, *, label: str) -> np.ndarray: return array +_SPINE_SOURCE_HOUSEHOLD_ID_COLUMN = "source_household_id" +_SPINE_SUPPORT_CLONE_INDEX_COLUMN = "household_support_clone_index" +_SPINE_CGT_BAND_DONOR_COLUMN = "household_is_cgt_band_donor" + + +def uk_spine_source_family_units(frame: Frame) -> tuple[np.ndarray, np.ndarray]: + """Return the UK spine's explicit source-family keys and raw-row strata. + + Every derivative row travels with the raw FRS household named by its + ``source_household_id``. The raw household owns the family's region, so + derivative flags and incidental derivative regions never split one + source family across sampling strata. + """ + + household = frame.table("household") + required = { + "household_id", + _SPINE_SOURCE_HOUSEHOLD_ID_COLUMN, + _SPINE_SUPPORT_CLONE_INDEX_COLUMN, + HOUSEHOLD_IS_SPI_SYNTHETIC_COLUMN, + _CAPITAL_GAINS_CLONE_COLUMN, + _SPINE_CGT_BAND_DONOR_COLUMN, + _REGION_COLUMN, + } + missing = sorted(required - set(household.columns)) + if missing: + raise ValueError( + "UK spine sample requires explicit lineage and channel columns; " + f"household is missing {missing}." + ) + + household_ids = _int_column(household["household_id"], label="household_id") + units = _int_column( + household[_SPINE_SOURCE_HOUSEHOLD_ID_COLUMN], + label=_SPINE_SOURCE_HOUSEHOLD_ID_COLUMN, + ) + support_clone = _int_column( + household[_SPINE_SUPPORT_CLONE_INDEX_COLUMN], + label=_SPINE_SUPPORT_CLONE_INDEX_COLUMN, + ) + if (support_clone < 0).any(): + raise ValueError( + "UK sample: household_support_clone_index must be non-negative." + ) + spi = _strict_bool( + household[HOUSEHOLD_IS_SPI_SYNTHETIC_COLUMN], + label=HOUSEHOLD_IS_SPI_SYNTHETIC_COLUMN, + ) + capital_gains = _strict_bool( + household[_CAPITAL_GAINS_CLONE_COLUMN], + label=_CAPITAL_GAINS_CLONE_COLUMN, + ) + band_donor = _strict_bool( + household[_SPINE_CGT_BAND_DONOR_COLUMN], + label=_SPINE_CGT_BAND_DONOR_COLUMN, + ) + regions = _str_column(household[_REGION_COLUMN], label=_REGION_COLUMN) + + raw = (support_clone == 0) & ~spi & ~capital_gains & ~band_donor + source_rows = raw & (household_ids == units) + source_keys = set(int(value) for value in units[source_rows]) + missing_sources = sorted(set(int(value) for value in units) - source_keys) + if missing_sources: + raise ValueError( + "UK spine sample: source_household_id family key(s) lack a " + "household_id-bearing raw row: " + f"{missing_sources[:5]}." + ) + + raw_region_by_unit: dict[int, str] = {} + multi_region: list[int] = [] + for unit in sorted(set(int(value) for value in units)): + family_regions = set(str(value) for value in regions[raw & (units == unit)]) + if len(family_regions) > 1: + multi_region.append(unit) + else: + raw_region_by_unit[unit] = next(iter(family_regions)) + if multi_region: + raise ValueError( + "UK spine sample: source family spans more than one raw-row " + f"region for key(s) {multi_region[:5]}." + ) + + strata = np.asarray( + [f"region={raw_region_by_unit[int(unit)]}" for unit in units], + dtype=object, + ) + return units, strata + + +def sample_uk_spine_frame( + frame: Frame, + *, + fraction: float, + seed: int, +) -> tuple[Frame, dict[str, object]]: + """Sample complete explicit source families from a UK Microcosm spine.""" + + validate_sample_fraction(fraction, label="UK spine sample") + validate_sample_seed(seed, label="UK spine sample") + validate_uk_national_frame(frame) + + household = frame.table("household") + units, strata = uk_spine_source_family_units(frame) + pre_counts = pd.Series(units).value_counts(sort=False) + full_mass = float(frame.weights_for("household").total) + sampled, core_receipt = sample_frame_households( + frame, + fraction=fraction, + seed=seed, + source_name="UK spine", + unit_ids=units, + unit_strata=strata, + unit_noun="source family", + floor_context="the UK rowwise candidate", + ) + normalized, factor = normalize_sampled_household_mass( + sampled, + target_mass=full_mass, + source_name="UK spine", + ) + + post_units, _ = uk_spine_source_family_units(normalized) + post_counts = pd.Series(post_units).value_counts(sort=False) + incomplete = sorted( + int(unit) + for unit, count in post_counts.items() + if int(count) != int(pre_counts.loc[unit]) + ) + if incomplete: + raise ValueError( + "UK spine sample retained incomplete source family key(s): " + f"{incomplete[:5]}." + ) + validate_uk_national_frame(normalized) + return normalized, { + "fraction": float(fraction), + "seed": int(seed), + "rung_token": UK_SAMPLE_RUNG_TOKENS.get(float(fraction)), + "pre_household_count": int(len(household)), + "post_household_count": int(len(normalized.table("household"))), + "pre_family_count": int(len(pre_counts)), + "post_family_count": int(len(post_counts)), + "normalization_factor": float(factor), + "strata_count": int(len(np.unique(strata))), + "receipt": dict(core_receipt), + } + + def uk_source_family_units( frame: Frame, ) -> tuple[np.ndarray, tuple[int, ...], int]: diff --git a/packages/microcosm-build/tests/test_country_spec.py b/packages/microcosm-build/tests/test_country_spec.py index 7eabedef4..38f9cd437 100644 --- a/packages/microcosm-build/tests/test_country_spec.py +++ b/packages/microcosm-build/tests/test_country_spec.py @@ -946,6 +946,7 @@ def test_spi_spine_adds_no_country_package_resources(self) -> None: "was_wealth_support_bounds.json", "uc_deduction_support_bounds.json", "local_binding_adjudications.json", + "local_area_support_exclusions.json", "uk_local_target_census.json", "uk_data_target_parity.json", "uk_data_target_inventory.json", @@ -1036,6 +1037,7 @@ def test_uk_package_loads(self) -> None: "was_wealth_support_bounds.json", "uc_deduction_support_bounds.json", "local_binding_adjudications.json", + "local_area_support_exclusions.json", "uk_local_target_census.json", "uk_data_target_parity.json", "uk_data_target_inventory.json", diff --git a/packages/microcosm-build/tests/test_cross_grain.py b/packages/microcosm-build/tests/test_cross_grain.py index 511fa8952..5596fd705 100644 --- a/packages/microcosm-build/tests/test_cross_grain.py +++ b/packages/microcosm-build/tests/test_cross_grain.py @@ -112,6 +112,72 @@ def test_bridge_sums_exhaustive_higher_partition_to_one_control(): ] +def test_bridge_rescales_constituency_and_la_to_same_country_control(): + bridge = CrossGrainBridge( + "national_age_vs_local_age", + concept="people", + higher_target_ids=("national_age",), + lower_side="contract:local_age", + ) + surface = pd.DataFrame( + [ + ("country", "UK", "national_age", 100.0), + ("constituency", "E1", "local_age", 60.0), + ("constituency", "S1", "local_age", 39.999), + ("la", "E9", "local_age", 50.0), + ("la", "S9", "local_age", 50.001), + ], + columns=["grain", "geography_id", "target_id", "value"], + ) + + reconciled, receipt = apply_cross_grain_reconciliation( + surface, + ("national_age",), + { + "national_age": { + "measurement": { + "concept": "people", + "entity": "household", + "map_to": None, + "filters": [{"age": {"minimum": 0, "maximum": 9}}], + } + }, + "local_age": { + "measurement": { + "concept": "people", + "entity": "household", + "map_to": None, + "filters": [{"age": {"lower": 0, "upper": 10}}], + } + }, + }, + _rule(bridges=(bridge,)), + ) + + assert reconciled.loc[reconciled["grain"] == "constituency", "value"].sum() == ( + pytest.approx(100.0) + ) + assert reconciled.loc[reconciled["grain"] == "la", "value"].sum() == pytest.approx( + 100.0 + ) + bridge_groups = [ + group + for group in receipt["groups"] + if group["bridge_id"] == "national_age_vs_local_age" + ] + assert {group["legs"][0]["reason"] for group in bridge_groups} == { + "standing cross-grain rule: country controls constituency", + "standing cross-grain rule: country controls la", + } + assert all( + group["bridge_id"] == "national_age_vs_local_age" for group in bridge_groups + ) + assert all( + group["legs"][0]["declared_factor"] == pytest.approx(1.0, abs=2e-5) + for group in bridge_groups + ) + + def test_middle_grain_wins_when_country_is_absent(): surface = pd.DataFrame( [ @@ -150,6 +216,9 @@ def test_absence_receipt_exists_when_no_higher_target_is_bound(): "bound_higher_targets": [], "inconsistencies_in_force": [], "groups": [], + "unbound_bridges": [], + "empty_legs_licensed": [], + "controls_without_lower_rows": [], "absence": "No cross-grain inconsistencies are in force on this surface.", } @@ -175,6 +244,81 @@ def test_partially_bound_declared_partition_is_refused(): ) +def test_reviewed_partial_partition_is_unbound_with_receipt_and_no_reconciliation(): + bridge = CrossGrainBridge( + "partition", + "households", + ("part_a", "part_b", "part_c"), + "external:census/households", + ) + surface = pd.DataFrame( + [ + ("country", "UK", "part_a", 10.0), + ("constituency", "E1", "external:census/households", 30.0), + ("constituency", "W1", "external:census/households", 20.0), + ], + columns=["grain", "geography_id", "target_id", "value"], + ) + original = surface.copy(deep=True) + reviewed = { + "part_b": {"tracking": "microcosm#791", "reason": "unmeasurable"}, + "part_c": {"tracking": "microcosm#791", "reason": "unmeasurable"}, + } + + reconciled, receipt = apply_cross_grain_reconciliation( + surface, + ("part_a",), + { + "part_a": _signature(), + "part_b": _signature(), + "part_c": _signature(), + }, + _rule(bridges=(bridge,)), + reviewed_unbound_higher_targets=reviewed, + ) + + pd.testing.assert_frame_equal(reconciled, original) + assert receipt["groups"] == [] + assert receipt["inconsistencies_in_force"] == [] + assert receipt["unbound_bridges"] == [ + { + "bridge_id": "partition", + "missing": ["part_b", "part_c"], + "basis": "reviewed_exclusion", + "records": reviewed, + } + ] + + +def test_partial_partition_with_unreviewed_member_names_it_in_refusal(): + bridge = CrossGrainBridge( + "partition", + "households", + ("part_a", "part_b", "part_c"), + "external:census/households", + ) + surface = pd.DataFrame( + [("country", "UK", "part_a", 10.0)], + columns=["grain", "geography_id", "target_id", "value"], + ) + + with pytest.raises( + ValueError, + match=r"lack a reviewed exclusion.*part_c", + ): + detect_cross_grain_inconsistencies( + surface, + ("part_a",), + { + "part_a": _signature(), + "part_b": _signature(), + "part_c": _signature(), + }, + _rule(bridges=(bridge,)), + reviewed_unbound_higher_targets={"part_b": {"tracking": "microcosm#791"}}, + ) + + def test_target_matched_by_two_bridges_is_refused(): bridges = ( CrossGrainBridge("one", "households", ("national",), "contract:local"), @@ -234,9 +378,7 @@ def test_unparented_and_empty_legs_are_refused(): ) signatures = {"national": _signature(), "local": _signature()} with pytest.raises(ValueError, match="unparented"): - apply_cross_grain_reconciliation( - unparented, ("national",), signatures, _rule() - ) + apply_cross_grain_reconciliation(unparented, ("national",), signatures, _rule()) empty = pd.DataFrame( [ @@ -246,10 +388,124 @@ def test_unparented_and_empty_legs_are_refused(): ], columns=["grain", "geography_id", "target_id", "value"], ) - with pytest.raises(ValueError, match="empty leg"): + with pytest.raises(ValueError, match="empty leg.*lacks a licence"): apply_cross_grain_reconciliation(empty, ("national",), signatures, _rule()) +def test_empty_leg_licensed_for_every_lower_target_is_receipted_and_skipped(): + surface = pd.DataFrame( + [ + ("country", "E", "national", 100.0), + ("country", "S", "national", 50.0), + ("constituency", "E1", "local_a", 40.0), + ("constituency", "E2", "local_b", 60.0), + ], + columns=["grain", "geography_id", "target_id", "value"], + ) + signatures = { + target_id: _signature() for target_id in ("national", "local_a", "local_b") + } + + reconciled, receipt = apply_cross_grain_reconciliation( + surface, + ("national",), + signatures, + _rule(), + licensed_empty_legs={ + "local_a": frozenset({"S"}), + "local_b": frozenset({"S"}), + }, + ) + + assert reconciled["value"].tolist() == [100.0, 50.0, 40.0, 60.0] + inconsistency_id = receipt["groups"][0]["inconsistency_id"] + assert receipt["empty_legs_licensed"] == [ + { + "inconsistency_id": inconsistency_id, + "parent_geography_id": "S", + "leg": "S", + "lower_target_ids": ["local_a", "local_b"], + } + ] + assert receipt["controls_without_lower_rows"] == [ + { + "inconsistency_id": inconsistency_id, + "parent_geography_id": "S", + "covered_legs": ["S"], + "higher_target_ids": ["national"], + "lower_target_ids": ["local_a", "local_b"], + } + ] + assert receipt["groups"][0]["legs"][0]["leg"] == "E" + + +def test_empty_leg_licensed_for_only_one_lower_target_is_refused(): + surface = pd.DataFrame( + [ + ("country", "E", "national", 100.0), + ("country", "S", "national", 50.0), + ("constituency", "E1", "local_a", 40.0), + ("constituency", "E2", "local_b", 60.0), + ], + columns=["grain", "geography_id", "target_id", "value"], + ) + signatures = { + target_id: _signature() for target_id in ("national", "local_a", "local_b") + } + + with pytest.raises( + ValueError, + match=r"empty leg.*S.*lacks a licence.*local_b", + ): + apply_cross_grain_reconciliation( + surface, + ("national",), + signatures, + _rule(), + licensed_empty_legs={"local_a": frozenset({"S"})}, + ) + + +def test_control_with_no_populated_legs_is_receipted_and_dropped(): + surface = pd.DataFrame( + [ + ("country", "E", "national", 100.0), + ("country", "S", "national", 50.0), + ("constituency", "E1", "local", 100.0), + ], + columns=["grain", "geography_id", "target_id", "value"], + ) + + reconciled, receipt = apply_cross_grain_reconciliation( + surface, + ("national",), + {"national": _signature(), "local": _signature()}, + _rule(), + licensed_empty_legs={"local": frozenset({"S"})}, + ) + + assert reconciled["value"].tolist() == [100.0, 50.0, 100.0] + inconsistency_id = receipt["groups"][0]["inconsistency_id"] + assert receipt["empty_legs_licensed"] == [ + { + "inconsistency_id": inconsistency_id, + "parent_geography_id": "S", + "leg": "S", + "lower_target_ids": ["local"], + } + ] + assert receipt["controls_without_lower_rows"] == [ + { + "inconsistency_id": inconsistency_id, + "parent_geography_id": "S", + "covered_legs": ["S"], + "higher_target_ids": ["national"], + "lower_target_ids": ["local"], + } + ] + assert receipt["groups"][0]["legs"][0]["parent_geography_id"] == "E" + + def test_two_different_controls_at_same_grain_are_refused(): surface = pd.DataFrame( [ @@ -304,9 +560,7 @@ def test_non_finite_targets_are_refused(): columns=["grain", "geography_id", "target_id", "value"], ) with pytest.raises(ValueError, match="finite"): - apply_cross_grain_reconciliation( - surface, (), {"local": _signature()}, _rule() - ) + apply_cross_grain_reconciliation(surface, (), {"local": _signature()}, _rule()) def test_off_control_reconciliation_is_refused(monkeypatch): @@ -328,13 +582,9 @@ def test_off_control_reconciliation_is_refused(monkeypatch): ) signatures = {"national": _signature(), "local": _signature()} - monkeypatch.setattr( - module.np, "isclose", lambda *args, **kwargs: False - ) + monkeypatch.setattr(module.np, "isclose", lambda *args, **kwargs: False) with pytest.raises(ValueError, match="off its control"): - apply_cross_grain_reconciliation( - surface, ("national",), signatures, _rule() - ) + apply_cross_grain_reconciliation(surface, ("national",), signatures, _rule()) def test_closure_holds_across_many_legs_with_awkward_floats(): diff --git a/packages/microcosm-build/tests/test_gates.py b/packages/microcosm-build/tests/test_gates.py index 88f277ad8..69e9b0726 100644 --- a/packages/microcosm-build/tests/test_gates.py +++ b/packages/microcosm-build/tests/test_gates.py @@ -44,6 +44,65 @@ from microcosm.calibrate import TargetRegistry, TargetSpec +def _area_support(rows=2, ess=2.0, sources=2): + return pd.DataFrame( + { + "geography_level": ["constituency"], + "area_code": ["C1"], + "nonzero_households": [rows], + "effective_sample_size": [ess], + "nonzero_source_households": [sources], + } + ) + + +def test_area_support_reviewed_exclusion_records_measured_shortfalls() -> None: + record = {"approved_by": "reviewer", "adjudication": "uk-data#123"} + result = area_support_gate( + _area_support(), + area_roster={"constituency": ["C1"]}, + geography_levels=["constituency"], + minimum_rows=50, + minimum_effective_sample_size=50.0, + minimum_distinct_sources=50, + reviewed_exclusions={"constituency/C1": record}, + ) + assert result.passed + assert result.details["excluded_area_count"] == 1 + excluded = result.details["reviewed_exclusions"]["constituency/C1"] + assert excluded["rows"] == 2 + assert excluded["ess"] == 2.0 + assert excluded["sources"] == 2 + assert excluded["record"] == record + assert len(excluded["shortfalls"]) == 3 + + +def test_area_support_stale_and_unknown_exclusions_fail() -> None: + stale = area_support_gate( + _area_support(rows=50, ess=50.0, sources=50), + area_roster={"constituency": ["C1"]}, + geography_levels=["constituency"], + minimum_rows=50, + minimum_effective_sample_size=50.0, + minimum_distinct_sources=50, + reviewed_exclusions={"constituency/C1": {"reason": "old"}}, + ) + assert not stale.passed + assert stale.details["stale_exclusions"] == ["constituency/C1"] + + unknown = area_support_gate( + _area_support(rows=50, ess=50.0, sources=50), + area_roster={"constituency": ["C1"]}, + geography_levels=["constituency"], + minimum_rows=50, + minimum_effective_sample_size=50.0, + minimum_distinct_sources=50, + reviewed_exclusions={"constituency/X": {"reason": "wrong roster"}}, + ) + assert not unknown.passed + assert unknown.details["unknown_exclusions"] == ["constituency/X"] + + class TestGateResultInvariants: def test_pass_with_failures_is_refused(self) -> None: with pytest.raises(ValueError, match="cannot pass with failures"): diff --git a/packages/microcosm-build/tests/test_spec_engine_country_bundles.py b/packages/microcosm-build/tests/test_spec_engine_country_bundles.py index 5aef5be01..78e4a117d 100644 --- a/packages/microcosm-build/tests/test_spec_engine_country_bundles.py +++ b/packages/microcosm-build/tests/test_spec_engine_country_bundles.py @@ -55,7 +55,7 @@ ), ( "uk", - "815158a6318bfce7c85b5454f0b62f964bc8f0105cf8b9721d60e32c289fc5f4", + "d01fa52a6f9cc32af96e6b2650298154f3dd3311018f90ba8b3c890c31930e04", { "benunit.benunit_id", "household.household_id", diff --git a/packages/microcosm-build/tests/test_target_reference_authoring.py b/packages/microcosm-build/tests/test_target_reference_authoring.py index f53aabc0b..9bf4b633b 100644 --- a/packages/microcosm-build/tests/test_target_reference_authoring.py +++ b/packages/microcosm-build/tests/test_target_reference_authoring.py @@ -54,6 +54,8 @@ def test_author_area_target_references_fans_out_roster_and_resolves_operations() aggregation="mean", ), ] + for fact in facts: + fact["period"]["value"] = 2024 authored = author_area_target_references( contract, @@ -90,6 +92,44 @@ def test_author_area_target_references_fans_out_roster_and_resolves_operations() assert amount_reference["measure"] == "hmrc/employment_income/amount" assert amount_reference["ledger_selector"]["geography_id"] == "A1" assert amount_reference["value_operation"] == "count_x_mean" + assert authored.membership_report["uprating_holds"] == [ + { + "name": "ons.age.0_10@A1", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "A1", + "from": "2024", + "to": "2025", + }, + { + "name": "ons.age.0_10@A2", + "target_id": "ons.age.0_10", + "geography_level": "constituency", + "geography_id": "A2", + "from": "2024", + "to": "2025", + }, + { + "name": "hmrc.employment_income.amount@A1", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "A1", + "from": "2024", + "to": "2025", + }, + { + "name": "hmrc.employment_income.amount@A2", + "target_id": "hmrc.employment_income.amount", + "geography_level": "constituency", + "geography_id": "A2", + "from": "2024", + "to": "2025", + }, + ] + assert authored.membership_report["holds_by_target"] == { + "hmrc.employment_income.amount": 2, + "ons.age.0_10": 2, + } def test_author_area_target_references_refuses_unsigned_absence() -> None: diff --git a/packages/microcosm-build/tests/test_uk_battery_bindings.py b/packages/microcosm-build/tests/test_uk_battery_bindings.py index 86d923c3b..ff0313fd5 100644 --- a/packages/microcosm-build/tests/test_uk_battery_bindings.py +++ b/packages/microcosm-build/tests/test_uk_battery_bindings.py @@ -49,6 +49,7 @@ from microcosm.build.uk_runtime.terminal_gates import ( UKInputMassReference, ) +from microcosm.build.uk_runtime.weighted_integrity import UKReviewedExclusion from microcosm.calibrate import TargetRegistry, TargetSpec from microcosm.frame import engine_tables @@ -1031,6 +1032,62 @@ def test_missing_required_stage_fails_with_the_assertion_text( assert "omits required release family stage(s)" in stages.result.failures[0] +def test_area_support_binding_resolves_register_and_rejects_expired_entry( + monkeypatch, + uk_gates, +) -> None: + import microcosm.build.uk_runtime.battery_bindings as battery_bindings + + entry = {entry.id: entry for entry in uk_gates.gates}["uk_local_area_support"] + binding = UK_GATE_REGISTRY["area_support"] + support = pd.DataFrame( + { + "geography_level": ["constituency", "local_authority"], + "area_code": ["E14000001", "E06000001"], + "assigned_households": [50, 50], + "nonzero_households": [50, 50], + "effective_sample_size": [50.0, 50.0], + "nonzero_source_households": [50, 50], + } + ) + monkeypatch.setattr( + battery_bindings, + "_local_area_roster", + lambda _resource, _levels: { + "constituency": ("E14000001",), + "local_authority": ("E06000001",), + }, + ) + context = EvidenceContext( + artifacts={ + "uk_area_support_summary": support, + "exclusions_evaluated_on": CLOCK, + } + ) + + committed = binding.evaluate(context, entry.parameters) + assert committed.passed is True + assert committed.details["reviewed_exclusions"] == {} + + monkeypatch.setattr( + battery_bindings, + "load_uk_reviewed_exclusion_register", + lambda *_args, **_kwargs: { + "constituency/E14000001": UKReviewedExclusion( + reason="synthetic expired support review", + approved_by="reviewer", + adjudication="microcosm#762", + approved_on="2026-01-01", + expires_on="2026-02-01", + ) + }, + ) + expired = binding.evaluate(context, entry.parameters) + assert expired.passed is False + assert expired.details["invalid_reviewed_exclusions"] == ["constituency/E14000001"] + assert "outside its approval window" in expired.failures[0] + + class TestParameterVocabulary: def test_every_declared_uk_parameter_is_inside_its_binding_vocabulary( self, uk_gates diff --git a/packages/microcosm-build/tests/test_uk_diagnostics.py b/packages/microcosm-build/tests/test_uk_diagnostics.py index 5eb8e8f01..ee5ad4734 100644 --- a/packages/microcosm-build/tests/test_uk_diagnostics.py +++ b/packages/microcosm-build/tests/test_uk_diagnostics.py @@ -13,6 +13,7 @@ UK_DIAGNOSTICS_SCHEMA_VERSION, UK_TARGET_GEOGRAPHY_LEVELS, uk_calibration_diagnostics_payload, + uk_support_limited_misses, uk_weakest_areas_by_fit, uk_weakest_families, uk_weight_summary, @@ -143,6 +144,89 @@ def test_local_weakest_rollups_pin_family_area_and_country_shapes() -> None: assert [row["area_code"] for row in trimmed["bottom_by_fit"]] == ["W07000041"] +def test_local_fit_diagnostics_filter_national_rows_and_pin_support_shape() -> None: + diagnostics = pd.DataFrame( + { + "area_type": ["constituency", "constituency", "la", None], + "area_code": ["E14000001", "E14000002", "E06000001", None], + "abs_relative_error": [0.30, 0.05, 0.40, 0.90], + } + ) + support = { + "constituency": pd.DataFrame( + { + "area_code": ["E14000001", "E14000002"], + "assigned_households": [2, 20], + "effective_sample_size": [1.0, 20.0], + "nonzero_source_households": [1, 20], + } + ), + "la": pd.DataFrame( + { + "area_code": ["E06000001"], + "assigned_households": [3], + "effective_sample_size": [2.0], + "nonzero_source_households": [2], + } + ), + } + + result = uk_support_limited_misses( + diagnostics, + support, + max_abs_relative_error=0.25, + ) + assert set(result) == {"constituency", "la"} + assert result["constituency"] == { + "n_failing_cells": 1, + "share_failing_cells_in_bottom_ess_decile": 1.0, + "spearman_worst_abs_relative_error_vs_ess": -1.0, + "worst_areas": [ + { + "area_code": "E14000001", + "worst_abs_relative_error": 0.3, + "rows": 2, + "ess": 1.0, + "sources": 1, + }, + { + "area_code": "E14000002", + "worst_abs_relative_error": 0.05, + "rows": 20, + "ess": 20.0, + "sources": 20, + }, + ], + } + assert result["la"]["n_failing_cells"] == 1 + assert result["la"]["spearman_worst_abs_relative_error_vs_ess"] is None + + rows = [ + _local_target_row( + "local", + family="income", + area_type="constituency", + area_code="E14000001", + relative_error=0.30, + loss_contribution=0.20, + ), + { + "name": "national", + "relative_error": 0.90, + "final_loss_contribution": 0.80, + "registry": {"family": "national_income"}, + "metadata": {"geography_level": "national"}, + }, + ] + long_support = support["constituency"].assign( + geography_level="constituency", + nonzero_households=lambda frame: frame["assigned_households"], + ) + areas = uk_weakest_areas_by_fit(rows, long_support) + assert areas["n_areas_scored"] == 1 + assert areas["bottom_by_fit"][0]["area_code"] == "E14000001" + + def _diagnostics_case(*, with_skipped: bool = False): levels_and_weights = ( ("national", 11.0), diff --git a/packages/microcosm-build/tests/test_uk_ladder_targets.py b/packages/microcosm-build/tests/test_uk_ladder_targets.py index 8e48dfbc8..c56fc275c 100644 --- a/packages/microcosm-build/tests/test_uk_ladder_targets.py +++ b/packages/microcosm-build/tests/test_uk_ladder_targets.py @@ -118,6 +118,7 @@ class FakeUKSimulation: "income_tax": [1.0, 0.0, 2.0, 3.0], "age": [5, 35, 72, 12], "universal_credit": [0.0, 100.0, 50.0], + "num_children": [1, 0, 2], "is_child": [1.0, 0.0, 0.0, 1.0], } diff --git a/packages/microcosm-build/tests/test_uk_ledger_targets.py b/packages/microcosm-build/tests/test_uk_ledger_targets.py index cea29aa85..f1a077104 100644 --- a/packages/microcosm-build/tests/test_uk_ledger_targets.py +++ b/packages/microcosm-build/tests/test_uk_ledger_targets.py @@ -11,11 +11,14 @@ UK_CROSS_GRAIN_BRIDGES, UK_CROSS_GRAIN_GRAIN_PRECEDENCE, UK_CROSS_GRAIN_RULE, + _spec_geography, + _uk_licensed_empty_legs_from_membership, align_uk_local_registry_parity_fixture, apply_uk_cross_grain_reconciliation, compile_uk_local_target_registry, compile_uk_target_registry, materialize_uk_ledger_targets, + uk_local_target_surface, ) from microcosm.calibrate import TargetRegistry, TargetSpec @@ -24,6 +27,378 @@ ) +def test_uk_local_target_surface_uses_registry_names_and_reconciles() -> None: + registry = TargetRegistry( + [ + TargetSpec( + name="dwp.uc.households", + entity="household", + value=90.0, + measure="uc_households", + period=2025, + source="DWP", + family="uc_households", + metadata={ + "contract_target_id": "dwp.uc.households", + "ledger_geography_level": "country", + "ledger_geography_id": "K03000001", + }, + ), + TargetSpec( + name="dwp.uc.households_by_area@E14000001", + entity="household", + value=30.0, + measure="uc_households", + period=2025, + source="DWP", + family="uc_households", + metadata={ + "contract_target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "E14000001", + }, + ), + TargetSpec( + name="dwp.uc.households_by_area@S14000001", + entity="household", + value=15.0, + measure="uc_households", + period=2025, + source="DWP", + family="uc_households", + metadata={ + "contract_target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": "S14000001", + }, + ), + ], + country="uk", + ) + ladder = SimpleNamespace( + households=np.asarray([10.0, 20.0]), + constituency_code=np.asarray(["E14000001", "S14000001"]), + local_authority_code=np.asarray(["E06000001", "S12000005"]), + ) + + surface, receipt = uk_local_target_surface( + registry, + ladder, + bound_national_target_ids=("dwp.uc.households",), + period=2025, + ) + + uc = surface.loc[surface["metric"] == "uc_households"] + assert uc["value"].tolist() == [60.0, 30.0] + assert uc["target_name"].tolist() == [ + "dwp.uc.households_by_area@E14000001", + "dwp.uc.households_by_area@S14000001", + ] + ladder_rows = surface.loc[surface["metric"] == "households"] + assert set(ladder_rows["area_type"]) == {"constituency", "la"} + assert all(ladder_rows["period"] == 2025) + assert "national_uc_caseload_vs_uc_households_by_area" in { + group["bridge_id"] for group in receipt["groups"] + } + uc_group = next( + group + for group in receipt["groups"] + if group["bridge_id"] == "national_uc_caseload_vs_uc_households_by_area" + ) + assert uc_group["winning_grain"] == "country" + assert {leg["parent_geography_id"] for leg in uc_group["legs"]} == {"K03000001"} + + +def test_uk_local_target_surface_fires_k020_household_partition_bridge() -> None: + composition_ids = UK_CROSS_GRAIN_BRIDGES[0].higher_target_ids + registry = TargetRegistry( + [ + TargetSpec( + name=target_id, + entity="household", + value=10.0, + measure=f"measure/{position}", + period=2025, + source="ONS", + family="household_composition", + metadata={ + "contract_target_id": target_id, + "ledger_geography_level": "country", + "ledger_geography_id": "K02000001", + }, + ) + for position, target_id in enumerate(composition_ids) + ], + country="uk", + ) + ladder = SimpleNamespace( + households=np.asarray([10.0, 20.0]), + constituency_code=np.asarray(["E14000001", "S14000001"]), + local_authority_code=np.asarray(["E06000001", "S12000005"]), + ) + + surface, receipt = uk_local_target_surface( + registry, + ladder, + bound_national_target_ids=composition_ids, + period=2025, + ) + + ladder_rows = surface.loc[surface["metric"] == "households"] + assert ladder_rows.groupby("area_type")["value"].sum().to_dict() == { + "constituency": pytest.approx(100.0), + "la": pytest.approx(100.0), + } + groups = [ + group + for group in receipt["groups"] + if group["bridge_id"] + == "national_household_composition_partition_vs_census_households" + ] + assert {group["winning_grain"] for group in groups} == {"country"} + assert { + leg["parent_geography_id"] for group in groups for leg in group["legs"] + } == {"K02000001"} + + +def _national_geography_spec(metadata: dict[str, str]) -> TargetSpec: + return TargetSpec( + name="dwp.uc.households", + entity="household", + value=90.0, + measure="uc_households", + period=2025, + source="DWP", + family="uc_households", + metadata={"contract_target_id": "dwp.uc.households", **metadata}, + ) + + +def _minimal_target_surface_ladder() -> SimpleNamespace: + return SimpleNamespace( + households=np.asarray([10.0]), + constituency_code=np.asarray(["E14000001"]), + local_authority_code=np.asarray(["E06000001"]), + ) + + +def _national_control_spec( + name: str, + *, + value: float, + target_id: str = "dwp.uc.payment_distribution_single", + geography_level: str = "country", + geography_id: str = "K03000001", +) -> TargetSpec: + return TargetSpec( + name=name, + entity="household", + value=value, + measure=f"measure/{name}", + period=2025, + source="synthetic national control fixture", + family="national_control", + metadata={ + "contract_target_id": target_id, + "ledger_geography_level": geography_level, + "ledger_geography_id": geography_id, + }, + ) + + +def test_uk_local_target_surface_excludes_fanout_from_cross_grain_controls() -> None: + specs = [ + _national_control_spec(f"payment-band-{index}", value=value) + for index, value in enumerate((10.0, 20.0, 30.0)) + ] + specs.extend( + [ + TargetSpec( + name=f"dwp.uc.households_by_area@{area}", + entity="household", + value=value, + measure="uc_households", + period=2025, + source="synthetic local UC fixture", + family="uc_households", + metadata={ + "contract_target_id": "dwp.uc.households_by_area", + "geography_level": "constituency", + "geography_id": area, + }, + ) + for area, value in (("E14000001", 30.0), ("S14000001", 15.0)) + ] + ) + + surface, receipt = uk_local_target_surface( + TargetRegistry(specs, country="uk"), + SimpleNamespace( + households=np.asarray([30.0, 15.0]), + constituency_code=np.asarray(["E14000001", "S14000001"]), + local_authority_code=np.asarray(["E06000001", "S12000005"]), + ), + bound_national_target_ids=("dwp.uc.payment_distribution_single",), + period=2025, + ) + + assert surface.loc[surface["metric"] == "uc_households", "value"].tolist() == [ + 30.0, + 15.0, + ] + assert receipt["bound_higher_targets"] == [] + assert all( + group["bridge_id"] != "national_uc_caseload_vs_uc_households_by_area" + for group in receipt["groups"] + ) + assert receipt["fanout_targets_not_controls"] == [ + { + "target_id": "dwp.uc.payment_distribution_single", + "geography_id": "K03000001", + "cells": 3, + "cell_names": ["payment-band-0", "payment-band-1", "payment-band-2"], + "activated_sum": 60.0, + "reason": ( + "The activated cells are a band subset, so this distribution " + "is not a cross-grain control." + ), + } + ] + assert "fanout_controls_summed" not in receipt + + +def test_uk_local_target_surface_keeps_single_national_control(monkeypatch) -> None: + from microcosm.build.uk_runtime import ledger_targets as module + + captured: dict[str, pd.DataFrame] = {} + + def capture(frame, bound_higher_targets, *_args, **_kwargs): + captured["frame"] = frame.copy(deep=True) + captured["bound"] = tuple(bound_higher_targets) + return frame.copy(deep=True), {"groups": []} + + monkeypatch.setattr(module, "apply_uk_cross_grain_reconciliation", capture) + spec = _national_control_spec("only-cell", value=42.0) + + _, receipt = module.uk_local_target_surface( + TargetRegistry([spec], country="uk"), + _minimal_target_surface_ladder(), + bound_national_target_ids=("dwp.uc.payment_distribution_single",), + period=2025, + ) + + controls = captured["frame"].loc[ + captured["frame"]["target_id"] == "dwp.uc.payment_distribution_single" + ] + assert controls[["grain", "geography_id", "value"]].to_dict("records") == [ + {"grain": "country", "geography_id": "K03000001", "value": 42.0} + ] + assert captured["bound"] == ("dwp.uc.payment_distribution_single",) + assert receipt["fanout_targets_not_controls"] == [] + assert "fanout_controls_summed" not in receipt + + +def test_uk_local_target_surface_refuses_named_nonfinite_national_cell() -> None: + specs = [ + _national_control_spec("finite-cell", value=10.0), + _national_control_spec("bad-cell", value=20.0), + ] + object.__setattr__(specs[1], "value", float("nan")) + + with pytest.raises(ValueError, match="bad-cell.*non-finite"): + uk_local_target_surface( + TargetRegistry(specs, country="uk"), + _minimal_target_surface_ladder(), + bound_national_target_ids=("dwp.uc.payment_distribution_single",), + period=2025, + ) + + +def test_uk_local_target_surface_refuses_fanout_across_levels() -> None: + target_id = "voa.council_tax_stock.band_a" + specs = [ + _national_control_spec( + "country-cell", + value=10.0, + target_id=target_id, + geography_level="country", + geography_id="K02000001", + ), + _national_control_spec( + "region-cell", + value=20.0, + target_id=target_id, + geography_level="region", + geography_id="K02000001", + ), + ] + + with pytest.raises( + ValueError, + match="country-cell.*region-cell.*mixed geography levels", + ): + uk_local_target_surface( + TargetRegistry(specs, country="uk"), + _minimal_target_surface_ladder(), + bound_national_target_ids=(target_id,), + period=2025, + ) + + +@pytest.mark.parametrize( + ("metadata", "message"), + [ + ({}, "dwp.uc.households.*names no geography"), + ( + { + "geography_level": "country", + "geography_id": "K02000001", + "ledger_geography_level": "country", + "ledger_geography_id": "K03000001", + }, + "dwp.uc.households.*disagree", + ), + ( + { + "ledger_geography_level": "constituency", + "ledger_geography_id": "E14000001", + }, + "dwp.uc.households.*contract.*country", + ), + ], +) +def test_uk_local_target_surface_refuses_invalid_compiled_geography( + metadata: dict[str, str], + message: str, +) -> None: + registry = TargetRegistry([_national_geography_spec(metadata)], country="uk") + + with pytest.raises(ValueError, match=message): + uk_local_target_surface( + registry, + _minimal_target_surface_ladder(), + bound_national_target_ids=(), + period=2025, + ) + + +def test_compiled_geography_resolver_refuses_blank_spelling() -> None: + spec = SimpleNamespace( + name="dwp.uc.households", + metadata={ + "contract_target_id": "dwp.uc.households", + "ledger_geography_level": "", + "ledger_geography_id": "K02000001", + }, + ) + + with pytest.raises( + ValueError, + match="dwp.uc.households.*blank ledger geography", + ): + _spec_geography(spec) + + def test_local_parity_fixture_aligns_legacy_council_tax_band_names(): fixture = { "rows": [ @@ -526,6 +901,14 @@ def test_uk_cross_grain_rule_constants_are_review_pinned(): assert [bridge.bridge_id for bridge in UK_CROSS_GRAIN_BRIDGES] == [ "national_household_composition_partition_vs_census_households", "national_uc_caseload_vs_uc_households_by_area", + "national_age_0_9_vs_local_age_0_10", + "national_age_10_19_vs_local_age_10_20", + "national_age_20_29_vs_local_age_20_30", + "national_age_30_39_vs_local_age_30_40", + "national_age_40_49_vs_local_age_40_50", + "national_age_50_59_vs_local_age_50_60", + "national_age_60_69_vs_local_age_60_70", + "national_age_70_79_vs_local_age_70_80", ] assert UK_CROSS_GRAIN_BRIDGES[0].higher_target_ids == ( "ons.household_composition.lone_households_under_65", @@ -542,6 +925,128 @@ def test_uk_cross_grain_rule_constants_are_review_pinned(): assert UK_CROSS_GRAIN_BRIDGES[1].higher_target_ids == ("dwp.uc.households",) +def test_uk_age_cross_grain_bridges_are_complete_and_exclude_80_89(): + age_bridges = { + bridge.bridge_id: ( + bridge.concept, + bridge.higher_target_ids, + bridge.lower_side, + ) + for bridge in UK_CROSS_GRAIN_BRIDGES + if bridge.bridge_id.startswith("national_age_") + } + + assert age_bridges == { + f"national_age_{lower}_{upper - 1}_vs_local_age_{lower}_{upper}": ( + "uk.person.count", + (f"ons.population.age_{lower}_{upper - 1}_by_region",), + f"contract:ons.age.{lower}_{upper}", + ) + for lower, upper in zip(range(0, 80, 10), range(10, 90, 10), strict=True) + } + assert all( + "80_89" not in target_id + for bridge in UK_CROSS_GRAIN_BRIDGES + for target_id in bridge.higher_target_ids + ) + + +def test_uk_age_bridge_rescales_constituency_and_la_to_uk_control(): + national_id = "ons.population.age_0_9_by_region" + local_id = "ons.age.0_10" + constituency_values = (25.0, 25.0, 25.0, 24.999) + la_values = (25.0, 25.0, 25.0, 25.001) + surface = pd.DataFrame( + [ + { + "grain": "country", + "geography_id": "K02000001", + "target_id": national_id, + "value": 100.0, + }, + *[ + { + "grain": "constituency", + "geography_id": area, + "target_id": local_id, + "value": value, + } + for area, value in zip( + ("E14000001", "W07000041", "S14000001", "N06000001"), + constituency_values, + strict=True, + ) + ], + *[ + { + "grain": "la", + "geography_id": area, + "target_id": local_id, + "value": value, + } + for area, value in zip( + ("E06000001", "W06000001", "S12000005", "N09000001"), + la_values, + strict=True, + ) + ], + ] + ) + + reconciled, receipt = apply_uk_cross_grain_reconciliation( + surface, + (national_id,), + ) + + assert reconciled.loc[reconciled["grain"] == "constituency", "value"].sum() == ( + pytest.approx(100.0) + ) + assert reconciled.loc[reconciled["grain"] == "la", "value"].sum() == pytest.approx( + 100.0 + ) + groups = [ + group + for group in receipt["groups"] + if group["bridge_id"] == "national_age_0_9_vs_local_age_0_10" + ] + assert {group["legs"][0]["reason"] for group in groups} == { + "standing cross-grain rule: country controls constituency", + "standing cross-grain rule: country controls la", + } + assert all(group["winning_grain"] == "country" for group in groups) + for group in groups: + assert len(group["legs"]) == 1 + leg = group["legs"][0] + assert leg["parent_geography_id"] == "K02000001" + assert leg["leg"] == "England+Wales+Scotland+Northern Ireland" + assert leg["new_total"] == pytest.approx(100.0) + assert leg["declared_factor"] == pytest.approx(1.0, abs=2e-5) + + +def test_uk_empty_leg_licences_require_complete_signed_deferral_coverage(): + membership = { + "areas_by_geography_level": { + "local_authority": ["E06000001", "S12000005", "S12000006"], + }, + "signed_deferrals": [ + { + "target_id": "voa.council_tax_stock.by_area.band_a", + "geography_level": "local_authority", + "area_ids": ["S12000005", "S12000006"], + }, + { + "target_id": "voa.council_tax_stock.by_area.band_b", + "geography_level": "local_authority", + "area_ids": ["S12000005"], + }, + ], + } + + assert _uk_licensed_empty_legs_from_membership(membership) == { + "voa.council_tax_stock.by_area.band_a": frozenset({"Scotland"}), + } + + def test_committed_contract_detects_exact_uc_payment_partition(): payment_ids = ( "dwp.uc.payment_distribution_single", @@ -616,7 +1121,11 @@ def test_council_tax_stock_country_control_rescales_la_band_counts(): def test_real_uk_bridges_resolve_contract_and_external_lower_sides(): - household_bridge, uc_bridge = UK_CROSS_GRAIN_BRIDGES + bridges = {bridge.bridge_id: bridge for bridge in UK_CROSS_GRAIN_BRIDGES} + household_bridge = bridges[ + "national_household_composition_partition_vs_census_households" + ] + uc_bridge = bridges["national_uc_caseload_vs_uc_households_by_area"] household_surface = pd.DataFrame( [ *[ @@ -677,6 +1186,71 @@ def test_real_uk_bridges_resolve_contract_and_external_lower_sides(): assert reconciled.loc[1:, "value"].tolist() == [60.0, 30.0] +def test_reviewed_household_composition_gap_leaves_census_ladder_unbound(): + household_bridge = UK_CROSS_GRAIN_BRIDGES[0] + missing = { + "ons.household_composition.unrelated_adult_households", + "ons.household_composition.lone_parent_non_dependent_children_households", + "ons.household_composition.multi_family_households", + } + selected = tuple( + target_id + for target_id in household_bridge.higher_target_ids + if target_id not in missing + ) + surface = pd.DataFrame( + [ + *[ + { + "grain": "country", + "geography_id": "K02000001", + "target_id": target_id, + "value": 10.0, + } + for target_id in selected + ], + { + "grain": "constituency", + "geography_id": "E14000001", + "target_id": "external:census_households/households", + "value": 40.0, + }, + { + "grain": "constituency", + "geography_id": "S14000001", + "target_id": "external:census_households/households", + "value": 10.0, + }, + ] + ) + reviewed = { + target_id: { + "tracking": "microcosm#791", + "reason": "relationship-to-head is unavailable", + } + for target_id in missing + } + + reconciled, receipt = apply_uk_cross_grain_reconciliation( + surface, + selected, + reviewed_unbound_higher_targets=reviewed, + ) + + assert reconciled.loc[len(selected) :, "value"].tolist() == [40.0, 10.0] + assert receipt["groups"] == [] + assert receipt["unbound_bridges"] == [ + { + "bridge_id": household_bridge.bridge_id, + "missing": sorted(missing), + "basis": "reviewed_exclusion", + "records": { + target_id: reviewed[target_id] for target_id in sorted(missing) + }, + } + ] + + def test_uk_front_door_reconciles_per_country_legs_and_builds_uniform_surface(): surface = pd.DataFrame( [ diff --git a/packages/microcosm-build/tests/test_uk_local_candidate_scorer.py b/packages/microcosm-build/tests/test_uk_local_candidate_scorer.py index 96761fea8..e1f57c728 100644 --- a/packages/microcosm-build/tests/test_uk_local_candidate_scorer.py +++ b/packages/microcosm-build/tests/test_uk_local_candidate_scorer.py @@ -153,6 +153,27 @@ def test_local_scorer_refuses_a_non_frozen_surface() -> None: ) +def test_local_scorer_accepts_candidate_superset_with_receipt() -> None: + scorer = _load_scorer() + registry, candidate, weights, metrics = _case() + candidate["targets"].append( + {"name": "national/extra@2025", "final_estimate": 123.0} + ) + + result = scorer.score_uk_local_candidate( + candidate_diagnostics=candidate, + incumbent_weights=weights, + incumbent_metrics=metrics, + target_registry=registry, + expected_reference_count=2, + ) + + assert result["rows_outside_register"] == { + "count": 1, + "rows": ["national/extra@2025"], + } + + def test_local_scorer_joins_the_incumbent_on_household_id() -> None: """A reordered metrics file must score identically, not plausibly wrong.""" diff --git a/packages/microcosm-build/tests/test_uk_local_doctrine.py b/packages/microcosm-build/tests/test_uk_local_doctrine.py index 976ca3a60..6e94fb35f 100644 --- a/packages/microcosm-build/tests/test_uk_local_doctrine.py +++ b/packages/microcosm-build/tests/test_uk_local_doctrine.py @@ -19,6 +19,8 @@ UK_LOCAL_TARGET_LOSS_CAP, UKLocalSolveDoctrine, past_cap_census, + uk_local_doctrine_with_overrides, + uk_local_target_loss_weights, ) @@ -84,6 +86,35 @@ def test_doctrine_constants_are_the_declared_contract() -> None: assert UK_LOCAL_SOLVE_DOCTRINE.max_weight_ratio == UK_LOCAL_MAX_WEIGHT_RATIO assert UK_LOCAL_SOLVE_DOCTRINE.scale_rule == "default_target_loss_scales" assert UK_LOCAL_SOLVE_DOCTRINE.target_weight_rule == "uniform" + assert UKLocalSolveDoctrine( + target_weight_rule="grain_equal" + ).target_weight_rule == ("grain_equal") + + +def test_grain_equal_weights_give_each_grain_one_equal_share() -> None: + labels = ["national", "national", "constituency", "la", "la", "la"] + weights = uk_local_target_loss_weights(labels, rule="grain_equal") + assert weights is not None + assert weights[:2].sum() == pytest.approx(1 / 3) + assert weights[2:3].sum() == pytest.approx(1 / 3) + assert weights[3:].sum() == pytest.approx(1 / 3) + assert uk_local_target_loss_weights(labels, rule="uniform") is None + + +def test_local_doctrine_override_is_receipted_and_bounds_are_frozen() -> None: + doctrine, receipt = uk_local_doctrine_with_overrides( + UK_LOCAL_SOLVE_DOCTRINE, + {"target_weight_rule": "grain_equal"}, + ) + assert doctrine.target_weight_rule == "grain_equal" + assert receipt == { + "target_weight_rule": {"default": "uniform", "effective": "grain_equal"} + } + with pytest.raises(ValueError, match="reviewed constants"): + uk_local_doctrine_with_overrides( + UK_LOCAL_SOLVE_DOCTRINE, + {"target_loss_cap": 2.0}, + ) def test_doctrine_rejects_tampered_bounds() -> None: diff --git a/packages/microcosm-build/tests/test_uk_local_gate_battery.py b/packages/microcosm-build/tests/test_uk_local_gate_battery.py index cd700ef75..6e0e8b401 100644 --- a/packages/microcosm-build/tests/test_uk_local_gate_battery.py +++ b/packages/microcosm-build/tests/test_uk_local_gate_battery.py @@ -44,6 +44,7 @@ def test_local_area_support_parameters_pin_both_grains_and_all_floors() -> None: "minimum_rows": 50, "minimum_effective_sample_size": 50.0, "minimum_distinct_sources": 50, + "exclusions_resource": "local_area_support_exclusions.json", } diff --git a/packages/microcosm-build/tests/test_uk_local_incumbent_extractor.py b/packages/microcosm-build/tests/test_uk_local_incumbent_extractor.py new file mode 100644 index 000000000..7e1b5b6f1 --- /dev/null +++ b/packages/microcosm-build/tests/test_uk_local_incumbent_extractor.py @@ -0,0 +1,92 @@ +from __future__ import annotations + +import importlib.util +import json +from pathlib import Path + +import h5py +import numpy as np +import pandas as pd +import pytest + + +def _tool_module(): + path = ( + Path(__file__).resolve().parents[3] + / "tools/extract_uk_local_incumbent_surface.py" + ) + spec = importlib.util.spec_from_file_location("extract_uk_local_incumbent", path) + assert spec is not None and spec.loader is not None + module = importlib.util.module_from_spec(spec) + spec.loader.exec_module(module) + return module + + +def test_extract_incumbent_surface_from_tiny_h5_and_stub_simulation( + tmp_path: Path, + monkeypatch, +) -> None: + pytest.importorskip("tables") + tool = _tool_module() + incumbent = tmp_path / "incumbent.h5" + with pd.HDFStore(incumbent, mode="w") as store: + store["household"] = pd.DataFrame({"household_id": [10, 20]}) + constituency_h5 = tmp_path / "constituency.h5" + with h5py.File(constituency_h5, mode="w") as root: + root.create_dataset("2025", data=np.asarray([[1.0, 2.0]])) + root.attrs["area_codes"] = np.asarray(["C1"], dtype="S2") + la_h5 = tmp_path / "la.h5" + with h5py.File(la_h5, mode="w") as root: + root.create_dataset("2025", data=np.asarray([[3.0, 4.0]])) + la_roster = tmp_path / "la.csv" + pd.DataFrame({"code": ["L1"], "name": ["Local one"]}).to_csv(la_roster, index=False) + + class StubSimulation: + pass + + def fake_metrics(simulation, grain, *, period, household_ids): + assert isinstance(simulation, StubSimulation) + assert period == 2025 + assert list(household_ids) == [10, 20] + common = {"households": [1.0, 1.0]} + if grain == "constituency": + common["constituency_only"] = [5.0, 6.0] + else: + common["la_only"] = [7.0, 8.0] + return pd.DataFrame(common, index=household_ids) + + monkeypatch.setattr(tool, "compute_household_metrics", fake_metrics) + out_dir = tmp_path / "out" + manifest = tool.extract_incumbent_surface( + incumbent_h5=incumbent, + constituency_weights_h5=constituency_h5, + local_authority_weights_h5=la_h5, + constituency_codes_csv=None, + local_authority_codes_csv=la_roster, + period=2025, + out_dir=out_dir, + microsimulation_factory=lambda **_: StubSimulation(), + ) + + weights = pd.read_csv(out_dir / tool.WEIGHTS_FILENAME) + metrics = pd.read_csv(out_dir / tool.METRICS_FILENAME) + assert weights.to_dict("list") == { + "household_id": [10, 20], + "C1": [1.0, 2.0], + "L1": [3.0, 4.0], + } + assert metrics.to_dict("list") == { + "household_id": [10, 20], + "households": [1.0, 1.0], + "constituency_only": [5.0, 6.0], + "la_only": [7.0, 8.0], + } + assert manifest["geography"] == { + "constituency_areas": 1, + "local_authority_areas": 1, + } + persisted = json.loads((out_dir / tool.MANIFEST_FILENAME).read_text()) + assert ( + persisted["outputs"]["weights"]["sha256"] + == manifest["outputs"]["weights"]["sha256"] + ) diff --git a/packages/microcosm-build/tests/test_uk_local_rowwise.py b/packages/microcosm-build/tests/test_uk_local_rowwise.py index c40b324e6..77e3ebc0b 100644 --- a/packages/microcosm-build/tests/test_uk_local_rowwise.py +++ b/packages/microcosm-build/tests/test_uk_local_rowwise.py @@ -22,9 +22,12 @@ UK_LOCAL_BINDING_ADJUDICATION_REGISTER_RESOURCE, UK_LOCAL_MAX_WEIGHT_RATIO, UK_LOCAL_TARGET_LOSS_CAP, + UKRowwiseNationalRows, build_uk_rowwise_local_matrix, + build_uk_rowwise_local_surface_matrix, load_uk_local_target_census, require_adjudicated_uk_local_binding, + rotated_uk_local_holdout, rowwise_area_support_summary, rowwise_calibration_mass_reason, solve_uk_rowwise_weights_under_doctrine, @@ -36,6 +39,8 @@ from microcosm.build.uk_runtime.weighted_integrity import ( load_uk_reviewed_exclusion_register, ) +from microcosm.calibrate.registry import TargetRegistry, TargetSpec +from microcosm.calibrate.target import TargetSet from microcosm.frame import WeightKind @@ -142,6 +147,274 @@ def test_matrix_builder_places_support_only_in_assigned_area() -> None: assert frame["area_type"].unique().tolist() == ["constituency"] +def test_surface_builder_omits_absent_cells_and_uses_canonical_order() -> None: + constituency_metrics = _metrics() + la_metrics = pd.DataFrame( + { + "households": [1.0, 1.0, 1.0], + "income/employment": [10.0, 20.0, 30.0], + }, + index=constituency_metrics.index, + ) + surface = pd.DataFrame( + [ + { + "area_type": "la", + "area_code": "L2", + "metric": "households", + "value": 1.0, + "target_name": "external:census_households/households@L2", + "family": "census_households", + }, + { + "area_type": "constituency", + "area_code": "S001", + "metric": "households", + "value": 1.0, + "target_name": "external:census_households/households@S001", + "family": "census_households", + }, + { + "area_type": "constituency", + "area_code": "E001", + "metric": "tenure/social_rent", + "value": 1.0, + "target_name": "contract:tenure@E001", + "family": "tenure", + }, + { + "area_type": "constituency", + "area_code": "E001", + "metric": "households", + "value": 2.0, + "target_name": "external:census_households/households@E001", + "family": "census_households", + }, + { + "area_type": "la", + "area_code": "L1", + "metric": "income/employment", + "value": 30.0, + "target_name": "contract:income@L1", + "family": "income", + }, + { + "area_type": "la", + "area_code": "L1", + "metric": "households", + "value": 2.0, + "target_name": "external:census_households/households@L1", + "family": "census_households", + }, + ] + ) + + problem = build_uk_rowwise_local_surface_matrix( + { + "constituency": constituency_metrics, + "la": la_metrics, + }, + { + "constituency": _assigned(), + "la": pd.Series(["L1", "L1", "L2"], index=constituency_metrics.index), + }, + surface, + area_codes_by_grain={ + "constituency": ("E001", "S001"), + "la": ("L1", "L2"), + }, + ) + + assert problem.matrix.shape == (6, 3) + assert list( + problem.target_frame[["area_type", "metric", "area_code"]].itertuples( + index=False, name=None + ) + ) == [ + ("constituency", "households", "E001"), + ("constituency", "households", "S001"), + ("constituency", "tenure/social_rent", "E001"), + ("la", "households", "L1"), + ("la", "households", "L2"), + ("la", "income/employment", "L1"), + ] + assert not ( + (problem.target_frame["area_type"] == "constituency") + & (problem.target_frame["area_code"] == "S001") + & (problem.target_frame["metric"] == "tenure/social_rent") + ).any() + + +def test_surface_builder_refuses_roster_coverage_and_unreachable_rows() -> None: + base = pd.DataFrame( + [ + { + "area_type": "constituency", + "area_code": "E001", + "metric": "households", + "value": 1.0, + "target_name": "households@E001", + "family": "census_households", + } + ] + ) + kwargs = { + "metrics_by_grain": {"constituency": _metrics()}, + "assigned_by_grain": {"constituency": _assigned()}, + "area_codes_by_grain": {"constituency": ("E001", "S001")}, + } + with pytest.raises(ValueError, match="assigned area.*S001"): + build_uk_rowwise_local_surface_matrix(surface=base, **kwargs) + + relaxed = build_uk_rowwise_local_surface_matrix( + surface=base, + require_every_assigned_area_covered=False, + **kwargs, + ) + assert relaxed.matrix.shape == (1, 3) + + off_roster = base.assign(area_code="X999") + with pytest.raises(ValueError, match="roster"): + build_uk_rowwise_local_surface_matrix( + surface=off_roster, + require_every_assigned_area_covered=False, + **kwargs, + ) + + unreachable = base.assign( + area_code="S001", + metric="tenure/social_rent", + value=1.0, + ) + zero_metrics = _metrics().assign(**{"tenure/social_rent": 0.0}) + with pytest.raises(ValueError, match="zero household support"): + build_uk_rowwise_local_surface_matrix( + metrics_by_grain={"constituency": zero_metrics}, + assigned_by_grain={"constituency": _assigned()}, + surface=unreachable, + area_codes_by_grain={"constituency": ("E001", "S001")}, + require_every_assigned_area_covered=False, + ) + + +def test_registry_surface_names_periods_and_lazy_masks_match_sparse_matrix() -> None: + import microcosm.build.uk_runtime.local_rowwise as local_rowwise + + spec = TargetSpec( + name="contract:ons.households@E001", + entity="household", + value=4.0, + measure="households", + period=2025, + source="ONS", + family="census_households", + metadata={"contract_target_id": "ons.households"}, + ) + surface = pd.DataFrame( + [ + { + "area_type": "constituency", + "area_code": "E001", + "metric": "households", + "value": spec.value, + "target_name": spec.name, + "family": spec.family, + "period": spec.period, + "source": spec.source, + "contract_target_id": spec.metadata["contract_target_id"], + } + ] + ) + problem = build_uk_rowwise_local_surface_matrix( + {"constituency": _metrics()}, + {"constituency": _assigned()}, + surface, + area_codes_by_grain={"constituency": ("E001", "S001")}, + require_every_assigned_area_covered=False, + ) + target = tuple(local_rowwise._rowwise_target_set(problem))[0] + + assert target.row_name == spec.to_target().row_name + assert target.metadata == { + "area_type": "constituency", + "area_code": "E001", + "metric": "households", + "family": "census_households", + "target_name": spec.name, + "contract_target_id": "ons.households", + } + expected = np.asarray(target.measure(_clone_frame())) * np.asarray( + target.filter(_clone_frame()) + ) + np.testing.assert_allclose(expected, problem.matrix.toarray()[0]) + + +def test_bound_family_derivation_accepts_multiple_families_per_grain() -> None: + import microcosm.build.uk_runtime.local_rowwise as local_rowwise + + frame = pd.DataFrame( + { + "area_type": ["constituency", "constituency", "la"], + "metric": ["households", "households", "households"], + "family": ["census_households", "tenure", "census_households"], + } + ) + families = local_rowwise._derive_uk_local_bound_families_from_target_frame( + frame, + family_rows={ + "census_households": {}, + "tenure": {}, + }, + ) + assert families == [ + "census_households/constituency", + "census_households/la", + "tenure/constituency", + ] + + +def test_dense_builder_delegates_without_changing_legacy_result() -> None: + dense = build_uk_rowwise_local_matrix(_metrics(), _assigned(), _targets()) + surface_rows = [] + for _, row in _targets().iterrows(): + for metric in _metrics().columns: + surface_rows.append( + { + "area_type": "constituency", + "area_code": row["code"], + "metric": metric, + "value": row[metric], + "target_name": f"constituency/{row['code']}/{metric}", + "family": ( + "census_households" if metric == "households" else "tenure" + ), + } + ) + surface = build_uk_rowwise_local_surface_matrix( + {"constituency": _metrics()}, + {"constituency": _assigned()}, + pd.DataFrame(surface_rows), + area_codes_by_grain={"constituency": ("E001", "S001")}, + ) + + # The long-format core is metric-major; the legacy dense wrapper preserves + # its established area-major row order while sharing the same assembler. + dense_by_cell = dense.target_frame.set_index(["area_type", "area_code", "metric"]) + surface_by_cell = surface.target_frame.set_index( + ["area_type", "area_code", "metric"] + ) + pd.testing.assert_series_equal( + dense_by_cell["value"].sort_index(), + surface_by_cell["value"].sort_index(), + ) + np.testing.assert_allclose( + dense.matrix.toarray()[ + dense.target_frame.sort_values(["area_type", "metric", "area_code"]).index + ], + surface.matrix.toarray(), + ) + + def test_matrix_builder_fails_closed_on_uncovered_assigned_area() -> None: assigned = pd.Series(["E001", "E001", "X999"], index=[101, 102, 103]) with pytest.raises(ValueError, match="X999"): @@ -205,8 +478,7 @@ def test_rowwise_doctrine_solve_uses_base_weights_directly() -> None: ) receipt = result.binding_adjudications assert ( - receipt["register_resource"] - == UK_LOCAL_BINDING_ADJUDICATION_REGISTER_RESOURCE + receipt["register_resource"] == UK_LOCAL_BINDING_ADJUDICATION_REGISTER_RESOURCE ) assert receipt["dormant"] == [] stood_on = receipt["stood_on"]["census_households/constituency"] @@ -218,6 +490,187 @@ def test_rowwise_doctrine_solve_uses_base_weights_directly() -> None: assert receipt["stood_on"]["tenure/constituency"] == {} +def test_joint_doctrine_solve_compiles_local_then_national_once_and_restores() -> None: + import microcosm.build.uk_runtime.local_rowwise as local_rowwise + + base = _clone_frame() + household = base.table("household").copy() + household["national/ones"] = 1.0 + prepared = uk_national_frame( + person=base.table("person"), + benunit=base.table("benunit"), + household=household, + household_weights=base.weights_for("household").values, + time_period="2023", + weight_kind=WeightKind.IMPORTANCE, + ) + spec = TargetSpec( + name="national/households", + entity="household", + value=3.0, + measure="national/ones", + period=0, + source="synthetic national fixture", + family="national_fixture", + ) + registry = TargetRegistry([spec], country="uk") + national = UKRowwiseNationalRows( + targets=registry.to_target_set(), + registry=registry, + families=("national_fixture",), + ) + calls = 0 + real_calibrate = local_rowwise.calibrate + + def spy(frame, targets, **kwargs): + nonlocal calls + calls += 1 + assert [target.name for target in targets][-1] == "national/households" + return real_calibrate(frame, targets, **kwargs) + + def restore(frame): + restored_household = frame.table("household").drop(columns=["national/ones"]) + restored_household["household_weight"] = frame.weights_for("household").values + return uk_national_frame( + person=frame.table("person"), + benunit=frame.table("benunit"), + household=restored_household, + household_weights=frame.weights_for("household").values, + time_period="2023", + weight_kind=WeightKind.CALIBRATED, + mass_log=frame.mass_log, + ) + + local_rowwise.calibrate = spy + try: + result = solve_uk_rowwise_weights_under_doctrine( + prepared, + build_uk_rowwise_local_matrix(_metrics(), _assigned(), _targets()), + bound_families=[ + "census_households/constituency", + "tenure/constituency", + "national/national_fixture", + ], + national_rows=national, + restore=restore, + epochs=2, + ) + finally: + local_rowwise.calibrate = real_calibrate + + assert calls == 1 + assert len(result.diagnostics) == 4 + assert result.national_diagnostics["name"].tolist() == [spec.to_target().row_name] + assert result.all_past_cap_census["n_targets"] == 5 + assert result.national_past_cap_census["n_targets"] == 1 + assert "national/national_fixture" in result.frame.mass_log[-1].reason + assert "national/ones" not in result.frame.table("household").columns + + +def test_joint_doctrine_solve_refuses_national_registry_misalignment() -> None: + spec = TargetSpec( + name="national/households", + entity="household", + value=3.0, + measure="household_weight", + source="synthetic national fixture", + family="national_fixture", + ) + registry = TargetRegistry([spec], country="uk") + wrong = TargetSpec( + name="national/wrong", + entity="household", + value=3.0, + measure="household_weight", + source="synthetic national fixture", + family="national_fixture", + ) + national = UKRowwiseNationalRows( + targets=TargetSet([wrong.to_target()]), + registry=registry, + families=("national_fixture",), + ) + with pytest.raises(ValueError, match="not aligned"): + solve_uk_rowwise_weights_under_doctrine( + _clone_frame(), + build_uk_rowwise_local_matrix(_metrics(), _assigned(), _targets()), + bound_families=[ + "census_households/constituency", + "tenure/constituency", + "national/national_fixture", + ], + national_rows=national, + epochs=1, + ) + + +def test_rotated_holdout_keeps_national_rows_in_every_training_fold( + monkeypatch, +) -> None: + import microcosm.build.uk_runtime.local_rowwise as local_rowwise + + metrics = pd.DataFrame( + { + "households": [1.0, 1.0, 1.0], + "tenure/social_rent": [1.0, 1.0, 1.0], + }, + index=[101, 102, 103], + ) + assigned = pd.Series(["A", "B", "C"], index=metrics.index) + targets = pd.DataFrame( + { + "code": ["A", "B", "C"], + "households": [1.0, 1.0, 1.0], + "tenure/social_rent": [1.0, 1.0, 1.0], + } + ) + problem = build_uk_rowwise_local_matrix(metrics, assigned, targets) + spec = TargetSpec( + name="national/households", + entity="household", + value=3.0, + measure="household_weight", + source="synthetic national fixture", + family="national_fixture", + ) + registry = TargetRegistry([spec], country="uk") + national = UKRowwiseNationalRows( + targets=registry.to_target_set(), + registry=registry, + families=("national_fixture",), + ) + calls = [] + + def fake_solve(frame, training_problem, **kwargs): + calls.append(kwargs["national_rows"]) + return type("Solve", (), {"weights": np.ones(3)})() + + monkeypatch.setattr( + local_rowwise, "solve_uk_rowwise_weights_under_doctrine", fake_solve + ) + receipt = rotated_uk_local_holdout( + _clone_frame(), + problem, + bound_families=[ + "census_households/constituency", + "tenure/constituency", + "national/national_fixture", + ], + national_rows=national, + epochs=1, + learning_rate=0.1, + conserve_mass=False, + target_records=None, + l0_lambda=0.0, + budget_iters=1, + solve_seed=7, + ) + + assert calls == [national] * 5 + assert receipt["n_folds"] == 5 + assert all(fold["training_national_rows"] == 1 for fold in receipt["folds"]) + + def test_rowwise_binding_refuses_unadjudicated_committed_fence() -> None: problem = _uc_problem() with pytest.raises(ValueError, match="uc_unit_vs_household_grain"): diff --git a/packages/microcosm-build/tests/test_uk_local_targets.py b/packages/microcosm-build/tests/test_uk_local_targets.py index 5729932c8..280666b3f 100644 --- a/packages/microcosm-build/tests/test_uk_local_targets.py +++ b/packages/microcosm-build/tests/test_uk_local_targets.py @@ -28,6 +28,7 @@ def __init__(self): "income_tax": [1.0, 0.0, 2.0, 3.0], "age": [5, 35, 72, 12], "universal_credit": [0.0, 100.0, 50.0], + "num_children": [0, 0, 1], "is_child": [1.0, 0.0, 0.0, 1.0], "equiv_hbai_household_net_income": [100.0, 200.0, 300.0], "equiv_hbai_household_net_income_ahc": [80.0, 150.0, 260.0], @@ -197,6 +198,47 @@ def test_compute_constituency_household_metrics() -> None: assert metrics["uc_hh_1_child"].tolist() == [0.0, 0.0, 1.0] +def test_uc_child_bands_sum_uc_benefit_units_to_household() -> None: + class MultiBenunitUKSimulation(FakeUKSimulation): + def __init__(self): + self.person_household = np.asarray([0, 0]) + self.benunit_household = np.asarray([0, 0, 0]) + self.data = { + "household_id": [101], + "self_employment_income": [0.0, 0.0], + "employment_income": [0.0, 0.0], + "income_tax": [0.0, 0.0], + "age": [35, 10], + "universal_credit": [100.0, 50.0, 0.0], + "num_children": [1, 3, 2], + "is_child": [0.0, 1.0], + } + + def map_result(self, values, from_entity, to_entity): + assert to_entity == "household" + values = np.asarray(values, dtype=float) + out = np.zeros(1, dtype=float) + links = ( + self.person_household + if from_entity == "person" + else self.benunit_household + ) + for index, household_index in enumerate(links): + out[household_index] += values[index] + return out + + metrics = compute_household_metrics( + MultiBenunitUKSimulation(), + "constituency", + ) + + assert metrics["uc_households"].tolist() == [2.0] + assert metrics["uc_hh_0_children"].tolist() == [0.0] + assert metrics["uc_hh_1_child"].tolist() == [1.0] + assert metrics["uc_hh_2_children"].tolist() == [0.0] + assert metrics["uc_hh_3plus_children"].tolist() == [1.0] + + def test_compute_la_household_metrics() -> None: metrics = compute_household_metrics(FakeUKSimulation(), "la") diff --git a/packages/microcosm-build/tests/test_uk_national_sampling.py b/packages/microcosm-build/tests/test_uk_national_sampling.py index d701b97d1..000cea2ce 100644 --- a/packages/microcosm-build/tests/test_uk_national_sampling.py +++ b/packages/microcosm-build/tests/test_uk_national_sampling.py @@ -12,7 +12,9 @@ ) from microcosm.build.uk_runtime.national_sampling import ( sample_uk_national_frame, + sample_uk_spine_frame, uk_source_family_units, + uk_spine_source_family_units, ) from microcosm.frame import Frame @@ -141,6 +143,138 @@ def _source_family_frame( ) +def _spine_family_frame( + *, + families_per_region: int = 4, + orphan_source: int | None = None, + multi_region_family: bool = False, + fractional_source: bool = False, +) -> Frame: + """Build a tiny spine with explicit raw-family lineage and derivatives.""" + + raw = [ + *[ + (household_id, "london") + for household_id in range(1, 1 + families_per_region) + ], + *[ + (household_id, "north") + for household_id in range( + 1 + families_per_region, 1 + 2 * families_per_region + ) + ], + ] + north_source = 1 + families_per_region + rows = [ + { + "household_id": household_id, + "source_household_id": household_id, + "region": region, + "support_clone": 0, + "spi": False, + "cgt": False, + "band_donor": False, + "weight": 10.0, + } + for household_id, region in raw + ] + rows.extend( + [ + { + "household_id": 10_001, + "source_household_id": 1, + "region": "london", + "support_clone": 0, + "spi": True, + "cgt": False, + "band_donor": False, + "weight": 2.0, + }, + { + "household_id": 10_002, + "source_household_id": 1, + "region": "london", + "support_clone": 1, + "spi": False, + "cgt": False, + "band_donor": False, + "weight": 2.0, + }, + { + "household_id": 20_001, + "source_household_id": north_source, + "region": "north", + "support_clone": 0, + "spi": False, + "cgt": True, + "band_donor": False, + "weight": 2.0, + }, + { + "household_id": 20_002, + "source_household_id": north_source, + "region": "north", + "support_clone": 0, + "spi": False, + "cgt": False, + "band_donor": True, + "weight": 2.0, + }, + ] + ) + if orphan_source is not None: + rows[-1]["source_household_id"] = orphan_source + if multi_region_family: + rows.append( + { + "household_id": 30_001, + "source_household_id": 1, + "region": "north", + "support_clone": 0, + "spi": False, + "cgt": False, + "band_donor": False, + "weight": 1.0, + } + ) + household = pd.DataFrame( + { + "household_id": [row["household_id"] for row in rows], + "source_household_id": [row["source_household_id"] for row in rows], + "source_household_key": [ + f"2023:{row['source_household_id']}" for row in rows + ], + "household_source_id": [row["source_household_id"] for row in rows], + "household_support_clone_index": [row["support_clone"] for row in rows], + "household_is_spi_synthetic": [row["spi"] for row in rows], + "household_is_capital_gains_clone": [row["cgt"] for row in rows], + "household_is_cgt_band_donor": [row["band_donor"] for row in rows], + "region": [row["region"] for row in rows], + "household_weight": [row["weight"] for row in rows], + } + ) + if fractional_source: + household["source_household_id"] = household["source_household_id"].astype( + float + ) + household.loc[household.index[-1], "source_household_id"] += 0.5 + household_ids = household["household_id"].to_numpy(dtype=np.int64) + person = pd.DataFrame( + { + "person_id": household_ids + 1_000, + "person_benunit_id": household_ids + 2_000, + "person_household_id": household_ids, + } + ) + benunit = pd.DataFrame({"benunit_id": household_ids + 2_000}) + return uk_national_frame( + person=person, + benunit=benunit, + household=household, + time_period="2023", + ) + + def _units_by_household(frame: Frame) -> dict[int, int]: units, _forced, _multiplier = uk_source_family_units(frame) household_ids = frame.table("household")["household_id"].to_numpy() @@ -311,3 +445,80 @@ def test_sampled_frames_pass_the_real_stage_fence() -> None: lineage.capital_gains_person_id_offset == full.capital_gains_person_id_offset ) + + +def test_spine_source_units_use_raw_family_regions() -> None: + frame = _spine_family_frame() + units, strata = uk_spine_source_family_units(frame) + household_ids = frame.table("household")["household_id"].to_numpy() + mapping = dict(zip(household_ids.tolist(), units.tolist(), strict=True)) + assert mapping[10_001] == 1 + assert mapping[10_002] == 1 + assert mapping[20_001] == 5 + assert mapping[20_002] == 5 + assert set(strata[units == 1]) == {"region=london"} + assert set(strata[units == 5]) == {"region=north"} + + +@pytest.mark.parametrize("fraction,rung", [(0.01, "f001"), (0.10, "f010")]) +def test_spine_sampling_is_stratified_keeps_families_and_normalizes( + fraction: float, + rung: str, +) -> None: + frame = _spine_family_frame(families_per_region=100) + units, _ = uk_spine_source_family_units(frame) + household_ids = frame.table("household")["household_id"].to_numpy() + family_by_household = dict(zip(household_ids.tolist(), units.tolist(), strict=True)) + full_rows_by_family = { + family: set(household_ids[units == family].tolist()) + for family in np.unique(units) + } + full_mass = float(frame.weights_for("household").total) + + sampled, receipt = sample_uk_spine_frame(frame, fraction=fraction, seed=19) + + sampled_ids = set(sampled.table("household")["household_id"].tolist()) + sampled_families = {family_by_household[value] for value in sampled_ids} + for family in sampled_families: + assert full_rows_by_family[family] <= sampled_ids + assert float(sampled.weights_for("household").total) == pytest.approx(full_mass) + assert receipt["pre_family_count"] == 200 + assert receipt["post_family_count"] == int(200 * fraction) + assert receipt["strata_count"] == 2 + assert receipt["receipt"]["strata"]["region=london"]["requested_units"] == int( + 100 * fraction + ) + assert receipt["receipt"]["strata"]["region=north"]["requested_units"] == int( + 100 * fraction + ) + assert receipt["normalization_factor"] > 0.0 + assert receipt["rung_token"] == rung + + +def test_spine_sampling_missing_lineage_column_fails_closed() -> None: + frame = _spine_family_frame() + household = frame.table("household").drop(columns=["source_household_id"]) + stripped = uk_national_frame( + person=frame.table("person"), + benunit=frame.table("benunit"), + household=household, + time_period="2023", + household_weights=frame.weights_for("household").values, + ) + with pytest.raises(ValueError, match="source_household_id"): + uk_spine_source_family_units(stripped) + + +def test_spine_sampling_fractional_source_fails_closed() -> None: + with pytest.raises(ValueError, match="source_household_id must be integer"): + uk_spine_source_family_units(_spine_family_frame(fractional_source=True)) + + +def test_spine_sampling_orphan_derivative_fails_closed() -> None: + with pytest.raises(ValueError, match="999"): + uk_spine_source_family_units(_spine_family_frame(orphan_source=999)) + + +def test_spine_sampling_multi_region_raw_family_fails_closed() -> None: + with pytest.raises(ValueError, match="spans more than one raw-row region.*1"): + uk_spine_source_family_units(_spine_family_frame(multi_region_family=True)) diff --git a/packages/microcosm-build/tests/test_uk_rowwise_candidate.py b/packages/microcosm-build/tests/test_uk_rowwise_candidate.py index 2d5a8933b..9db7bba91 100644 --- a/packages/microcosm-build/tests/test_uk_rowwise_candidate.py +++ b/packages/microcosm-build/tests/test_uk_rowwise_candidate.py @@ -8,6 +8,7 @@ import json from dataclasses import replace from pathlib import Path +from types import SimpleNamespace import numpy as np import pandas as pd @@ -21,10 +22,42 @@ read_uk_single_year_weight_metadata, write_uk_national_frame, ) -from microcosm.build.uk_runtime.national_frame import uk_national_frame +from microcosm.build.uk_runtime.national_frame import ( + uk_national_frame, + validate_uk_national_frame, +) +from microcosm.calibrate import TargetRegistry, TargetSpec from microcosm.frame import MassChangeRecord, WeightKind +@pytest.fixture(autouse=True) +def _empty_support_exclusions_for_synthetic_rosters( + monkeypatch: pytest.MonkeyPatch, +) -> None: + """Synthetic candidates never carry the committed micro-LA exclusions. + + The committed ``local_area_support_exclusions.json`` names real local + authorities measured on the licensed spine; a synthetic roster either + lacks them (unknown) or meets the floor (stale), and the gate rightly + fails either way. These tests exercise the machinery, so the support + register is pinned empty here; the committed entries are covered by + ``test_uk_battery_bindings.py``. + """ + + import microcosm.build.uk_runtime.battery_bindings as battery_bindings + + real_loader = battery_bindings.load_uk_reviewed_exclusion_register + + def _loader(path, *, resource, **kwargs): + if resource == "local_area_support_exclusions.json": + return {} + return real_loader(path, resource=resource, **kwargs) + + monkeypatch.setattr( + battery_bindings, "load_uk_reviewed_exclusion_register", _loader + ) + + @pytest.fixture(autouse=True) def _spool_only_by_default(monkeypatch: pytest.MonkeyPatch) -> None: monkeypatch.delenv("POPULACE_LEDGER_URL", raising=False) @@ -170,15 +203,31 @@ def _write_ladder( return load_uk_oa_ladder(path) -def _write_staging_h5(path: Path, *, households_per_region: int = 1) -> None: +def _write_staging_h5( + path: Path, + *, + households_per_region: int = 3, + region_masses: tuple[float, float, float, float] = (3.0, 10.0, 10.0, 10.0), +) -> None: + if households_per_region < 3: + raise ValueError("spine fixture needs one raw row and two derivatives") region_names = ( "LONDON", "WALES", "SCOTLAND", "NORTHERN_IRELAND", ) - region_masses = (3.0, 10.0, 10.0, 10.0) household_ids = list(range(1, 4 * households_per_region + 1)) + source_household_ids: list[int] = [] + support_clone_indices: list[int] = [] + spi_flags: list[bool] = [] + for region_index in range(4): + first = region_index * households_per_region + 1 + raw_count = households_per_region - 2 + source_household_ids.extend(range(first, first + raw_count)) + source_household_ids.extend([first, first]) + support_clone_indices.extend([0] * raw_count + [0, 1]) + spi_flags.extend([False] * raw_count + [True, False]) household = pd.DataFrame( { "household_id": household_ids, @@ -190,8 +239,15 @@ def _write_staging_h5(path: Path, *, households_per_region: int = 1) -> None: "region": [ region for region in region_names for _ in range(households_per_region) ], - "household_is_spi_synthetic": [False] * len(household_ids), + "source_household_id": source_household_ids, + "source_household_key": [ + f"2023:{source_id}" for source_id in source_household_ids + ], + "household_source_id": source_household_ids, + "household_support_clone_index": support_clone_indices, + "household_is_spi_synthetic": spi_flags, "household_is_capital_gains_clone": [False] * len(household_ids), + "household_is_cgt_band_donor": [False] * len(household_ids), } ) person_ids = [10_000 + household_id for household_id in household_ids] @@ -232,7 +288,7 @@ def test_candidate_build_writes_calibrated_h5_and_evidence( input_h5 = tmp_path / "staging.h5" ladder_path = tmp_path / "ladder.npz" output_dir = tmp_path / "candidate" - _write_staging_h5(input_h5, households_per_region=50) + _write_staging_h5(input_h5, households_per_region=52) ladder = _write_ladder(ladder_path) import microcosm.build.uk_runtime.battery_bindings as battery_bindings @@ -282,7 +338,7 @@ def test_candidate_build_writes_calibrated_h5_and_evidence( ) candidate_h5 = output_dir / builder.CANDIDATE_FILENAME_TEMPLATE.format( - source_year=2023 + calibration_year=2025 ) expected_sidecars = { builder.MANIFEST_FILENAME, @@ -290,7 +346,8 @@ def test_candidate_build_writes_calibrated_h5_and_evidence( builder.AREA_SUPPORT_FILENAME, builder.PAST_CAP_FILENAME, builder.CALIBRATION_DIAGNOSTICS_FILENAME, - builder.LOCAL_GATE_REPORT_FILENAME_TEMPLATE.format(source_year=2023), + builder.LOCAL_REGISTRY_FILENAME, + builder.LOCAL_GATE_REPORT_FILENAME_TEMPLATE.format(calibration_year=2025), } assert candidate_h5.exists() assert expected_sidecars <= {path.name for path in output_dir.iterdir()} @@ -303,7 +360,7 @@ def test_candidate_build_writes_calibrated_h5_and_evidence( assert candidate_kind is WeightKind.CALIBRATED assert candidate_household["source_year"].unique().tolist() == [2023] assert len(set(candidate_household["source_household_key"])) == 200 - assert {"2023:1", "2023:200"} <= set(candidate_household["source_household_key"]) + assert {"2023:1", "2023:206"} <= set(candidate_household["source_household_key"]) assert len(candidate_mass_log) == 3 calibration_records = [ record @@ -337,6 +394,8 @@ def test_candidate_build_writes_calibrated_h5_and_evidence( assert cross_grain["bound_higher_targets"] == [] assert cross_grain["inconsistencies_in_force"] == [] assert cross_grain["groups"] == [] + assert cross_grain["empty_legs_licensed"] == [] + assert cross_grain["controls_without_lower_rows"] == [] assert cross_grain["absence"] assert manifest["ladder_target_provenance"] == ladder_target_provenance(ladder) assert manifest["gate"]["passed"] is True @@ -379,15 +438,15 @@ def test_candidate_build_writes_calibrated_h5_and_evidence( "target_weight_rule": "uniform", } assert manifest["solve"]["n_targets"] == 4 - assert manifest["solve"]["n_households"] == 400 + assert manifest["solve"]["n_households"] == 416 assert np.isfinite(manifest["solve"]["initial_loss"]) assert np.isfinite(manifest["solve"]["final_loss"]) assert np.isfinite(manifest["solve"]["max_abs_relative_error"]) assert np.isfinite(manifest["solve"]["median_abs_relative_error"]) assert manifest["solve"]["past_cap"]["n_targets"] == 4 - assert manifest["support"]["min_assigned_households"] == 100 - assert manifest["support"]["min_nonzero_households"] == 100 - assert manifest["support"]["min_effective_sample_size"] == pytest.approx(100.0) + assert manifest["support"]["min_assigned_households"] == 104 + assert manifest["support"]["min_nonzero_households"] == 104 + assert manifest["support"]["min_effective_sample_size"] == pytest.approx(104.0) diagnostics = pd.read_csv(output_dir / builder.SOLVE_DIAGNOSTICS_FILENAME) support = pd.read_csv(output_dir / builder.AREA_SUPPORT_FILENAME) @@ -480,6 +539,14 @@ def forbidden(*_args, **_kwargs): captured = capsys.readouterr() plan = json.loads(captured.out) assert plan["dry_run"] is True + assert plan["sampling"] == { + "fraction": 1.0, + "seed": 578, + "rung_token": "f100", + "sampled": False, + "pre_household_count": 12, + "post_household_count": 12, + } assert plan["bound_target_families"] == ["census_households/constituency"] adjudications = plan["binding_adjudications"] assert adjudications["register_resource"] == "local_binding_adjudications.json" @@ -495,17 +562,645 @@ def forbidden(*_args, **_kwargs): assert cross_grain["bound_higher_targets"] == [] assert cross_grain["inconsistencies_in_force"] == [] assert cross_grain["groups"] == [] + assert cross_grain["empty_legs_licensed"] == [] + assert cross_grain["controls_without_lower_rows"] == [] assert cross_grain["absence"] assert plan["ladder_target_provenance"] == ladder_target_provenance(ladder) - assert plan["shapes"]["person"][0] == 8 - assert plan["shapes"]["benunit"][0] == 8 - assert plan["shapes"]["household"][0] == 8 - assert plan["shapes"]["local_matrix"] == [4, 8] + assert plan["shapes"]["person"][0] == 24 + assert plan["shapes"]["benunit"][0] == 24 + assert plan["shapes"]["household"][0] == 24 + assert plan["shapes"]["local_matrix"] == [4, 24] assert plan["target_count"] == 4 assert not output_dir.exists() assert not (output_dir / "logbook-spool").exists() +def test_candidate_sampling_rung_receipt_and_engine_block_validation( + monkeypatch, + capsys, + tmp_path, +) -> None: + pytest.importorskip("tables") + pytest.importorskip("h5py") + builder = _load_builder_module() + input_h5 = tmp_path / "staging.h5" + ladder_path = tmp_path / "ladder.npz" + output_dir = tmp_path / "dry-run-output" + _write_staging_h5(input_h5) + _write_ladder(ladder_path) + + def compact_sampler_forbidden(*_args, **_kwargs): + pytest.fail("rowwise spine path called the certified-compact sampler") + + monkeypatch.setattr( + builder, + "sample_uk_national_frame", + compact_sampler_forbidden, + raising=False, + ) + monkeypatch.setattr( + builder, + "sample_uk_spine_frame", + lambda frame, **_kwargs: ( + frame, + { + "fraction": 0.01, + "seed": 578, + "rung_token": "f001", + "pre_household_count": 12, + "post_household_count": 12, + "pre_family_count": 4, + "post_family_count": 4, + "normalization_factor": 1.0, + "strata_count": 4, + "receipt": {"synthetic_fixture": True}, + }, + ), + raising=False, + ) + + assert ( + builder._parse_args( + [ + "--input-h5", + str(input_h5), + "--ladder", + str(ladder_path), + "--out", + str(output_dir), + ] + ).n_clones + == 4 + ) + with pytest.raises(ValueError, match="must equal --n-clones"): + builder.main( + [ + "--input-h5", + str(input_h5), + "--ladder", + str(ladder_path), + "--out", + str(output_dir), + "--n-clones", + "4", + "--engine-blocks", + "2", + "--dry-run", + ] + ) + assert ( + builder.main( + [ + "--input-h5", + str(input_h5), + "--ladder", + str(ladder_path), + "--out", + str(output_dir), + "--n-clones", + "2", + "--sample-fraction", + "0.01", + "--sample-seed", + "578", + "--dry-run", + ] + ) + == 0 + ) + plan = json.loads(capsys.readouterr().out) + assert plan["sampling"]["fraction"] == 0.01 + assert plan["sampling"]["rung_token"] == "f001" + assert plan["sampling"]["pre_household_count"] == 12 + assert plan["sampling"]["post_household_count"] >= 1 + assert plan["sampling"]["normalization_factor"] > 0 + + +def test_candidate_f100_does_not_call_any_sampler(monkeypatch, tmp_path) -> None: + pytest.importorskip("tables") + builder = _load_builder_module() + input_h5 = tmp_path / "staging.h5" + _write_staging_h5(input_h5) + frame, _ = builder.load_uk_national_frame(input_h5) + + def forbidden(*_args, **_kwargs): + pytest.fail("f100 called a sampler") + + monkeypatch.setattr(builder, "sample_uk_national_frame", forbidden, raising=False) + monkeypatch.setattr(builder, "sample_uk_spine_frame", forbidden, raising=False) + + sampled, receipt = builder._sample_candidate_frame( + frame, + fraction=1.0, + seed=578, + ) + + assert sampled is frame + assert receipt == { + "fraction": 1.0, + "seed": 578, + "rung_token": "f100", + "sampled": False, + "pre_household_count": 12, + "post_household_count": 12, + } + + +def test_candidate_clone_count_planning_is_dry_run_only(tmp_path) -> None: + builder = _load_builder_module() + with pytest.raises(ValueError, match="only with --dry-run"): + builder.main( + [ + "--input-h5", + str(tmp_path / "missing.h5"), + "--ladder", + str(tmp_path / "missing.npz"), + "--out", + str(tmp_path / "out"), + "--candidate-clone-counts", + "1,2,4", + ] + ) + + +def test_candidate_engine_surface_reuses_one_resolver( + monkeypatch, + tmp_path, +) -> None: + pytest.importorskip("tables") + builder = _load_builder_module() + input_h5 = tmp_path / "staging.h5" + _write_staging_h5(input_h5) + frame, _ = builder.load_uk_national_frame(input_h5) + constructions = [] + + class StubResolver: + def __init__(self, **kwargs): + constructions.append(kwargs) + self.simulation = object() + self.contract_targets = {} + + def receipt(self): + return { + "mode": "stub", + "policyengine_uk_version": "test", + } + + monkeypatch.setattr( + builder, + "compute_household_metrics", + lambda _simulation, area_type, *, household_ids, **_kwargs: pd.DataFrame( + {f"{area_type}_metric": np.ones(len(household_ids))}, + index=household_ids, + ), + ) + registry = TargetRegistry([], country="uk") + prepared, restore, national, local_metrics, receipt = ( + builder._resolve_candidate_engine_surface( + frame, + registry, + period=2025, + scratch_dir=tmp_path / "scratch", + resolver_factory=StubResolver, + ) + ) + + assert len(constructions) == 1 + assert receipt == { + "mode": "stub", + "engine_version": "test", + "households": 12, + "persons": 12, + "benunits": 12, + "national_inputs": 0, + "local_metrics": {"constituency": 1, "la": 1}, + "blocks": 1, + } + assert set(local_metrics) == {"constituency", "la"} + assert len(national.targets) == 0 + assert restore(prepared).table("household").equals(frame.table("household")) + + +def test_candidate_engine_surface_resolves_real_per_clone_blocks( + monkeypatch, + tmp_path, +) -> None: + pytest.importorskip("tables") + builder = _load_builder_module() + input_h5 = tmp_path / "staging.h5" + ladder_path = tmp_path / "ladder.npz" + _write_staging_h5(input_h5) + frame, _ = builder.load_uk_national_frame(input_h5) + ladder = _write_ladder(ladder_path) + clone = builder._clone_with_ladder_binding( + frame, + ladder, + n_clones=2, + seed=7, + source_year=2023, + expected_constituency_vintage="2024_pcon", + source_lineage_modulus=None, + ).result + constructions = [] + + class StubResolver: + def __init__(self, **kwargs): + constructions.append(kwargs) + self.simulation = object() + self.contract_targets = {} + + def receipt(self): + return {"mode": "stub", "policyengine_uk_version": "test"} + + monkeypatch.setattr( + builder, + "compute_household_metrics", + lambda _simulation, area_type, *, household_ids, **_kwargs: pd.DataFrame( + {f"{area_type}_metric": np.arange(len(household_ids), dtype=float)}, + index=household_ids, + ), + ) + prepared, restore, _, metrics, receipt = builder._resolve_candidate_engine_surface( + clone.frame, + TargetRegistry([], country="uk"), + period=2025, + scratch_dir=tmp_path / "block-scratch", + resolver_factory=StubResolver, + blocks=2, + ) + + assert len(constructions) == 2 + assert [len(call["frame"].table("household")) for call in constructions] == [ + 12, + 12, + ] + assert receipt["blocks"] == 2 + assert receipt["deviation"] == "per_clone_block_engine_resolution" + assert ( + metrics["constituency"].index.tolist() + == clone.frame.table("household")["household_id"].tolist() + ) + assert restore(prepared).table("household").equals(clone.frame.table("household")) + + +def test_joint_candidate_f100_and_f001_end_to_end( + monkeypatch, + tmp_path, + capsys, +) -> None: + """The driver solves one local/ladder/national matrix at both rung postures.""" + + pytest.importorskip("tables") + pytest.importorskip("h5py") + builder = _load_builder_module() + input_h5 = tmp_path / "staging.h5" + ladder_path = tmp_path / "ladder.npz" + _write_staging_h5( + input_h5, + households_per_region=200, + region_masses=(4.0, 10.0, 10.0, 9.0), + ) + ladder_frame = _ladder_frame() + ladder_frame.loc[0, "households"] = 1.0 + english = ladder_frame.iloc[0].copy() + extra_english = [] + for suffix in (2, 3): + row = english.copy() + row["oa_code"] = f"E0000000{suffix}" + row["lsoa_code"] = row["oa_code"] + row["msoa_code"] = row["oa_code"] + row["constituency_code"] = f"E1400000{suffix}" + row["local_authority_code"] = f"E0900000{suffix}" + row["households"] = 1.0 + extra_english.append(row) + ladder_frame = pd.concat( + [ladder_frame, pd.DataFrame(extra_english)], ignore_index=True + ) + payload = assemble_uk_oa_ladder(ladder_frame, _ladder_metadata()) + np.savez_compressed(ladder_path, **payload) + ladder = load_uk_oa_ladder(ladder_path) + + from microcosm.build.uk_runtime.ledger_targets import UK_CROSS_GRAIN_BRIDGES + + household_bridge = UK_CROSS_GRAIN_BRIDGES[0] + reviewed_missing = { + "ons.household_composition.unrelated_adult_households", + "ons.household_composition.lone_parent_non_dependent_children_households", + "ons.household_composition.multi_family_households", + } + selected_composition = tuple( + target_id + for target_id in household_bridge.higher_target_ids + if target_id not in reviewed_missing + ) + fanout_target_id = "dwp.uc.payment_distribution_single" + fanout_names = tuple(f"payment-band-{index}" for index in range(3)) + national_registry = TargetRegistry( + [ + *[ + TargetSpec( + name=target_id, + entity="household", + measure=f"national/composition_{index}", + value=33.0, + period=2025, + source="synthetic national fixture", + family="ons", + metadata={ + "contract_target_id": target_id, + "ledger_geography_level": "country", + "ledger_geography_id": "K02000001", + }, + ) + for index, target_id in enumerate(selected_composition) + ], + *[ + TargetSpec( + name=name, + entity="household", + measure=f"national/payment_band_{index}", + value=33.0, + period=2025, + source="synthetic fan-out fixture", + family="dwp_uc", + metadata={ + "contract_target_id": fanout_target_id, + "ledger_geography_level": "country", + "ledger_geography_id": "K03000001", + }, + ) + for index, name in enumerate(fanout_names) + ], + ], + country="uk", + ) + local_registry = TargetRegistry( + [ + TargetSpec( + name="ons.tenure.owned_outright@E09000001", + entity="household", + measure="tenure/owned_outright", + value=1.0, + period=2025, + source="synthetic local fact fixture", + family="ons", + metadata={ + "contract_target_id": "ons.tenure.owned_outright", + "geography_level": "local_authority", + "geography_id": "E09000001", + "ledger_fact_period": "2023", + }, + ) + ], + country="uk", + ) + artifact = SimpleNamespace( + provenance=lambda: { + "facts_sha256": "1" * 64, + "manifest_sha256": "2" * 64, + "artifact_id": "synthetic-joint-fixture", + } + ) + joint_inputs = { + "artifact": artifact, + "calibration_year": 2025, + "national_registry": national_registry, + "band_edge_registry": national_registry, + "local_registry": local_registry, + "measure_exclusions": { + f"compiled::{target_id}": { + "tracking": "microcosm#791", + "reason": "relationship-to-head is unavailable", + } + for target_id in reviewed_missing + }, + "reviewed_unbound_higher_targets": { + target_id: { + "tracking": "microcosm#791", + "reason": "relationship-to-head is unavailable", + } + for target_id in reviewed_missing + }, + } + monkeypatch.setattr( + builder, "_load_joint_target_inputs", lambda _args: joint_inputs + ) + + constructions = [] + + class StubResolver: + def __init__(self, **kwargs): + constructions.append(kwargs) + self.frame = kwargs["frame"] + # A live resolver writes the frame to a scratch H5 through the + # national-frame writer, which validates the mass chain; a block + # must therefore carry a record whose total equals its weights. + validate_uk_national_frame(self.frame) + self.simulation = object() + self.contract_targets = {} + + def receipt(self): + return {"mode": "stub", "policyengine_uk_version": "test"} + + monkeypatch.setattr( + builder, + "resolve_target_measures", + # A live resolver injects ENGINE INPUTS (scratch columns the + # materialization reads), some of which also exist on another entity + # (region, esa_* on the spine); the driver must drop them before the + # prepared frame or the flattening rule refuses the duplicate column. + lambda _factory, _registry, provider, **_kwargs: SimpleNamespace( + measure_inputs={ + ("household", "stub_engine_input"): np.ones( + len(provider.frame.table("household")), dtype=float + ), + ("person", "region"): np.zeros( + len(provider.frame.table("person")), dtype=float + ), + } + ), + ) + + def _stub_materialize(adapter, registry, *, period, band_edge_registry=None): + # Materialization is what mints the prepared measure columns the + # national rows compile against; the stub writes them from the + # injected input so the lifecycle matches the real stage. + for spec in registry.specs: + table = adapter.tables[spec.entity] + table[spec.measure] = np.ones(len(table), dtype=float) + return SimpleNamespace(skipped=()) + + monkeypatch.setattr(builder, "materialize_uk_ledger_targets", _stub_materialize) + monkeypatch.setattr( + builder, + "compute_household_metrics", + lambda _simulation, area_type, *, household_ids, **_kwargs: pd.DataFrame( + { + "households": np.ones(len(household_ids), dtype=float), + **( + {"tenure/owned_outright": np.ones(len(household_ids), dtype=float)} + if area_type == "la" + else {} + ), + }, + index=household_ids, + ), + ) + real_resolve = builder._resolve_candidate_engine_surface + monkeypatch.setattr( + builder, + "_resolve_candidate_engine_surface", + lambda *args, **kwargs: real_resolve( + *args, resolver_factory=StubResolver, **kwargs + ), + ) + monkeypatch.setattr( + builder, + "rotated_uk_local_holdout", + lambda *_args, **_kwargs: {"report_only": True, "folds": []}, + ) + import microcosm.build.uk_runtime.battery_bindings as battery_bindings + + monkeypatch.setattr( + battery_bindings, + "_local_area_roster", + lambda _resource, levels: { + "constituency": tuple(sorted(set(ladder.constituency_code))), + "local_authority": tuple(sorted(set(ladder.local_authority_code))), + }, + ) + real_support_summary = builder.uk_ladder_area_support_summary + + def support_summary(household, ladder_arg): + if "household_weight" in household: + return real_support_summary(household, ladder_arg) + support = pd.DataFrame( + { + "nonzero_households": [len(household)], + "effective_sample_size": [float(len(household))], + "nonzero_source_households": [ + household["source_household_id"].nunique() + ], + } + ) + return {"constituency": support, "la": support} + + monkeypatch.setattr(builder, "uk_ladder_area_support_summary", support_summary) + + dry_out = tmp_path / "joint-dry" + assert ( + builder.main( + [ + "--input-h5", + str(input_h5), + "--ladder", + str(ladder_path), + "--out", + str(dry_out), + "--n-clones", + "2", + "--dry-run", + ] + ) + == 0 + ) + dry_plan = json.loads(capsys.readouterr().out) + dry_unbound = dry_plan["cross_grain"]["unbound_bridges"] + assert dry_plan["cross_grain"]["empty_legs_licensed"] == [] + assert dry_plan["cross_grain"]["controls_without_lower_rows"] == [] + assert [entry["bridge_id"] for entry in dry_unbound] == [household_bridge.bridge_id] + assert dry_unbound[0]["missing"] == sorted(reviewed_missing) + dry_fanout = dry_plan["cross_grain"]["fanout_targets_not_controls"] + assert dry_fanout == [ + { + "target_id": fanout_target_id, + "geography_id": "K03000001", + "cells": 3, + "cell_names": list(fanout_names), + "activated_sum": 99.0, + "reason": ( + "The activated cells are a band subset, so this distribution " + "is not a cross-grain control." + ), + } + ] + assert "fanout_controls_summed" not in dry_plan["cross_grain"] + assert not dry_out.exists() + + f100_out = tmp_path / "joint-f100" + assert ( + builder.main( + [ + "--input-h5", + str(input_h5), + "--ladder", + str(ladder_path), + "--out", + str(f100_out), + "--n-clones", + "2", + "--epochs", + "2", + "--skip-holdout", + ] + ) + == 0 + ) + f100 = json.loads((f100_out / builder.MANIFEST_FILENAME).read_text()) + assert f100["schema_version"] == 2 + assert f100["solve"]["n_targets_by_kind"] == { + "local": 1, + "ladder": 12, + "national": len(national_registry.specs), + } + assert f100["solve"]["n_targets"] == 13 + len(national_registry.specs) + assert f100["solve"]["measure_resolution"]["mode"] == "stub" + assert f100["cross_grain"]["unbound_bridges"] == dry_unbound + assert f100["solve"]["cross_grain"]["unbound_bridges"] == dry_unbound + assert f100["cross_grain"]["empty_legs_licensed"] == [] + assert f100["solve"]["cross_grain"]["empty_legs_licensed"] == [] + assert f100["cross_grain"]["controls_without_lower_rows"] == [] + assert f100["solve"]["cross_grain"]["controls_without_lower_rows"] == [] + assert f100["cross_grain"]["fanout_targets_not_controls"] == dry_fanout + assert f100["solve"]["cross_grain"]["fanout_targets_not_controls"] == dry_fanout + assert "fanout_controls_summed" not in f100["cross_grain"] + assert "fanout_controls_summed" not in f100["solve"]["cross_grain"] + assert f100["releasable"] is True + assert _spool_rows(f100_out)[0].rung == "f100" + + f001_out = tmp_path / "joint-f001" + assert ( + builder.main( + [ + "--input-h5", + str(input_h5), + "--ladder", + str(ladder_path), + "--out", + str(f001_out), + "--n-clones", + "1", + "--sample-fraction", + "0.01", + "--epochs", + "2", + "--skip-holdout", + ] + ) + == 0 + ) + f001 = json.loads((f001_out / builder.MANIFEST_FILENAME).read_text()) + assert f001["rung_surface"]["dropped_cells"] > 0 + assert f001["rung_surface"]["dropped_unreachable_cells"] >= 0 + assert isinstance(f001["rung_surface"]["dropped_unreachable_by_grain"], dict) + assert f001["rung_surface"]["dropped_by_grain"]["constituency"] >= 1 + assert f001["rung_surface"]["dropped_by_grain"]["la"] >= 1 + assert "uk_local_area_support" in f001["failing_gate_ids"] + assert f001["releasable"] is False + assert _spool_rows(f001_out)[0].rung == "f001" + assert len(constructions) == 2 + + def test_candidate_refusal_records_receipt_and_reraises( monkeypatch, tmp_path, @@ -562,7 +1257,7 @@ def failing_gate(*_args, **_kwargs): row = rows[0] assert row.disposition == "failed" gate_report_path = output_dir / builder.LOCAL_GATE_REPORT_FILENAME_TEMPLATE.format( - source_year=2023 + calibration_year=2025 ) assert gate_report_path.exists() assert row.gate_verdicts["uk_local_geography_ladder_post_calibration"] == { @@ -753,7 +1448,11 @@ def test_candidate_publication_rolls_back_on_interrupt( staging_dir = tmp_path / "staging" output_dir = tmp_path / "candidate" staging_dir.mkdir() - output_paths = builder._output_paths(output_dir, source_year=2023) + output_paths = builder._output_paths( + output_dir, + source_year=2023, + calibration_year=2025, + ) staged = {key: staging_dir / path.name for key, path in output_paths.items()} for path in staged.values(): path.write_text("complete staged artifact\n") @@ -770,3 +1469,140 @@ def interrupt_support(self, target): builder._publish_staged_files(staged, output_paths) assert not output_dir.exists() + + +def _failing_gate_evaluator(builder, name: str, message: str): + def evaluator(*_args, **_kwargs): + return builder.GateResult( + name=name, passed=False, failures=(message,), details={"minimum": 0} + ) + + return evaluator + + +def _joint_f100_args(input_h5: Path, ladder_path: Path, output_dir: Path) -> list[str]: + return [ + "--input-h5", + str(input_h5), + "--ladder", + str(ladder_path), + "--out", + str(output_dir), + "--n-clones", + "2", + "--seed", + "7", + "--epochs", + "2", + "--skip-holdout", + ] + + +def test_candidate_diagnostic_gate_failure_is_reported_not_blocking( + monkeypatch, tmp_path, capsys +) -> None: + pytest.importorskip("tables") + pytest.importorskip("h5py") + builder = _load_builder_module() + input_h5 = tmp_path / "staging.h5" + ladder_path = tmp_path / "ladder.npz" + output_dir = tmp_path / "candidate" + _write_staging_h5( + input_h5, households_per_region=200, region_masses=(4.0, 10.0, 10.0, 9.0) + ) + _write_ladder(ladder_path) + ladder = load_uk_oa_ladder(ladder_path) + import microcosm.build.uk_runtime.battery_bindings as battery_bindings + + monkeypatch.setattr( + battery_bindings, + "_local_area_roster", + lambda _resource, levels: { + "constituency": tuple(sorted(set(ladder.constituency_code))), + "local_authority": tuple(sorted(set(ladder.local_authority_code))), + }, + ) + ratio = builder.UK_GATE_REGISTRY["weight_ratio"] + monkeypatch.setattr( + builder, + "UK_GATE_REGISTRY", + { + **builder.UK_GATE_REGISTRY, + "weight_ratio": replace( + ratio, + evaluator=_failing_gate_evaluator( + builder, "weight_ratio", "ratio 104.6 > 100" + ), + ), + }, + ) + + assert builder.main(_joint_f100_args(input_h5, ladder_path, output_dir)) == 0 + + capsys.readouterr() + manifest = json.loads((output_dir / builder.MANIFEST_FILENAME).read_text()) + assert manifest["failing_gate_ids"] == ["uk_local_weight_ratio"] + assert manifest["blocked_at_f100"] is False + assert manifest["blocking_failures"] == [] + assert manifest["diagnostic_failures"] == [ + "[uk_local_weight_ratio] ratio 104.6 > 100" + ] + assert manifest["releasable"] is True + report = json.loads( + Path(manifest["outputs"]["local_gate_report"]["path"]).read_text() + ) + assert report["gates"]["uk_local_weight_ratio"]["criticality"] == "diagnostic" + assert report["gates"]["uk_local_weight_ratio"]["status"] == "failed" + assert _spool_rows(output_dir)[0].disposition == "iterating" + + +def test_candidate_block_partitions_failures_by_criticality( + monkeypatch, tmp_path, capsys +) -> None: + pytest.importorskip("tables") + pytest.importorskip("h5py") + builder = _load_builder_module() + input_h5 = tmp_path / "staging.h5" + ladder_path = tmp_path / "ladder.npz" + output_dir = tmp_path / "candidate" + _write_staging_h5( + input_h5, households_per_region=200, region_masses=(4.0, 10.0, 10.0, 9.0) + ) + _write_ladder(ladder_path) + registry = builder.UK_GATE_REGISTRY + monkeypatch.setattr( + builder, + "UK_GATE_REGISTRY", + { + **registry, + "area_support": replace( + registry["area_support"], + evaluator=_failing_gate_evaluator( + builder, "area_support", "ESS 42.3 < 50" + ), + ), + "weight_ratio": replace( + registry["weight_ratio"], + evaluator=_failing_gate_evaluator( + builder, "weight_ratio", "ratio 578 > 100" + ), + ), + }, + ) + + assert builder.main(_joint_f100_args(input_h5, ladder_path, output_dir)) == 1 + + captured = capsys.readouterr() + assert "artifact unreleasable" in captured.err + manifest = json.loads((output_dir / builder.MANIFEST_FILENAME).read_text()) + assert manifest["failing_gate_ids"] == [ + "uk_local_area_support", + "uk_local_weight_ratio", + ] + assert manifest["blocked_at_f100"] is True + assert manifest["blocking_failures"] == ["[uk_local_area_support] ESS 42.3 < 50"] + assert manifest["diagnostic_failures"] == [ + "[uk_local_weight_ratio] ratio 578 > 100" + ] + assert manifest["releasable"] is False + assert _spool_rows(output_dir)[0].disposition == "failed" diff --git a/packages/microcosm-data/src/microcosm/data/contract.py b/packages/microcosm-data/src/microcosm/data/contract.py index 7926c1116..e1c0c6f23 100644 --- a/packages/microcosm-data/src/microcosm/data/contract.py +++ b/packages/microcosm-data/src/microcosm/data/contract.py @@ -376,13 +376,13 @@ # fingerprint derives from the manifest digest. Editing the spec moves all # three here in the same reviewed change. _UK_GATE_BATTERY_POLICY_SHA256 = ( - "f7e2cf43fc2dd18a3d1add2965bb67e4faf21299678838ee0ac43694bb498a34" + "9b489e83111400c2c37345bbe78c9727b738cbffa125e2c378a33cf563d68b7c" ) _UK_GATE_BATTERY_GATES_MANIFEST_SHA256 = ( - "a787221b57af1c0d8c653ee652597fe3f79d5ff3ba8c58f6c16ee7a3ce755ea8" + "6e2e9c02c6b9d253378b3e77827c5c4599767e7f1b2173aa4687b7fffcedd25d" ) _UK_GATE_BATTERY_SPEC_FINGERPRINT = ( - "b7fa1a0e7d242f474ac5746de0f0115a96b935dbbcce57f4cdbbc955d0f9a0b9" + "b407d0088534ebfbc438030b3733b7daf2f80902676bd48c33bc2f5345809e30" ) #: Spec entry id -> the legacy gate name whose observable detail checks #: apply unchanged (the battery re-keys the report by entry id; the gate diff --git a/packages/microcosm-data/tests/test_contract.py b/packages/microcosm-data/tests/test_contract.py index 3a8d6bf53..571884c26 100644 --- a/packages/microcosm-data/tests/test_contract.py +++ b/packages/microcosm-data/tests/test_contract.py @@ -137,13 +137,13 @@ def _trusted_terminal_gate_signing_key(monkeypatch) -> None: UK_GATE_BATTERY_PRODUCER = "microcosm.build.gate_battery" UK_GATE_BATTERY_SIGNING_KEY_ENV = "MICROCOSM_UK_TERMINAL_GATE_SIGNING_KEY" UK_GATE_BATTERY_POLICY_SHA256 = ( - "f7e2cf43fc2dd18a3d1add2965bb67e4faf21299678838ee0ac43694bb498a34" + "9b489e83111400c2c37345bbe78c9727b738cbffa125e2c378a33cf563d68b7c" ) UK_GATE_BATTERY_GATES_MANIFEST_SHA256 = ( - "a787221b57af1c0d8c653ee652597fe3f79d5ff3ba8c58f6c16ee7a3ce755ea8" + "6e2e9c02c6b9d253378b3e77827c5c4599767e7f1b2173aa4687b7fffcedd25d" ) UK_GATE_BATTERY_SPEC_FINGERPRINT = ( - "b7fa1a0e7d242f474ac5746de0f0115a96b935dbbcce57f4cdbbc955d0f9a0b9" + "b407d0088534ebfbc438030b3733b7daf2f80902676bd48c33bc2f5345809e30" ) UK_GATE_BATTERY_DEGENERATE_EVIDENCE_SHA256 = ( "d0d024043132fa07c378c393dbe2b24fe99bf19e876bcc39997d2c80cc9bd4f6" diff --git a/tools/build_uk_rowwise_candidate.py b/tools/build_uk_rowwise_candidate.py index 8061967ab..b9c0a24f8 100644 --- a/tools/build_uk_rowwise_candidate.py +++ b/tools/build_uk_rowwise_candidate.py @@ -1,17 +1,13 @@ -"""Build the first calibrated UK rowwise candidate (#495 increment 6d). - -This command is the narrow adjudicated-partial candidate path from a national -staging H5 to a ladder-assigned, rowwise-calibrated artifact. It binds exactly -one target family, ``census_households/constituency``, using the constant-one -household metric and constituency household controls derived from the same -loaded OA ladder used for assignment. The solve always runs under the reviewed -UK local doctrine; no per-target or doctrine override is exposed. - -The command appends the canonical calibration mass-change record, advances the -household weight kind to ``CALIBRATED``, re-gates the calibrated frame, and -publishes the atomic H5 with diagnostics and manifest evidence. A dry run runs -the load, clone, gate, pairing, and matrix fences in memory, then prints a plan -without solving or writing any file. +"""Build a joint local, ladder, and national UK rowwise candidate. + +Pinned Ledger facts supply the local and national registries. The command +samples before cloning, resolves both local grains and national measures on the +cloned frame, and calibrates every row in one doctrine solve. A dry run compiles +the registries and reports analytical matrix/support evidence without running +the policy engine, solving, or writing output files. + +For pre-#762 synthetic fixtures, omitting the Ledger arguments retains the +adjudicated constituency-household compatibility path. """ from __future__ import annotations @@ -27,7 +23,7 @@ import time import uuid from collections.abc import Mapping -from datetime import UTC, datetime +from datetime import UTC, date, datetime from pathlib import Path from typing import Any @@ -41,6 +37,7 @@ GateBatteryRun, ) from microcosm.build.gates import GateResult +from microcosm.build.ledger_artifact import load_ledger_consumer_artifact from microcosm.build.logbook import canonical_json_bytes from microcosm.build.logbook_adoption import ( AttemptState, @@ -57,28 +54,46 @@ sha256_argument, write_error_receipt, ) +from microcosm.build.target_materialization import resolve_target_measures from microcosm.build.uk_runtime import ( UK_GATE_REGISTRY, UK_LOCAL_MAX_WEIGHT_RATIO, UK_LOCAL_SOLVE_DOCTRINE, UK_LOCAL_TARGET_LOSS_CAP, + CalibrationFrameAdapter, UKLadderRowwiseDatasetResult, UkOaLadder, UKRowwiseDoctrineSolve, UKRowwiseLocalMatrix, + UKRowwiseNationalRows, apply_uk_cross_grain_reconciliation, build_uk_rowwise_local_matrix, + build_uk_rowwise_local_surface_matrix, clone_uk_dataset_with_ladder_geography, + compile_uk_local_target_registry, + compile_uk_target_registry, + compute_household_metrics, constituency_household_targets, + drop_injected_measure_inputs, + inject_measure_inputs, + ladder_clone_index_column, ladder_target_provenance, + load_bound_spine_sidecar, + load_uk_local_area_crosswalk, load_uk_national_frame, load_uk_oa_ladder, local_target_census, + materialize_uk_ledger_targets, require_adjudicated_uk_local_binding, rotated_uk_local_holdout, + runtime_provenance, solve_uk_rowwise_weights_under_doctrine, + spine_provenance_from_sidecar, uk_household_weight_kind, uk_ladder_area_support_summary, + uk_local_doctrine_with_overrides, + uk_local_target_surface, + uk_support_limited_misses, uk_time_period, write_uk_calibration_diagnostics, write_uk_rowwise_dataset, @@ -89,20 +104,33 @@ uk_local_gate_scope_exclusions, uk_scoped_gate_manifest, ) +from microcosm.build.uk_runtime.frs_release import load_uk_frs_release +from microcosm.build.uk_runtime.ledger_targets import _spec_geography +from microcosm.build.uk_runtime.measure_simulation import ( + UKMeasureResolver, + apply_uk_calibration_measure_exclusions, + load_uk_calibration_measure_exclusions, +) +from microcosm.build.uk_runtime.national_sampling import ( + UK_SAMPLE_RUNG_TOKENS, + UK_SAMPLE_SEED_DEFAULT, + sample_uk_spine_frame, +) from microcosm.calibrate import TargetRegistry, TargetSpec -from microcosm.frame import MassChangeRecord +from microcosm.frame import Frame, MassChangeRecord BOUND_TARGET_FAMILIES = ("census_households/constituency",) BOUND_NATIONAL_TARGETS: tuple[str, ...] = () -CANDIDATE_FILENAME_TEMPLATE = "populace_uk_{source_year}_rowwise_candidate.h5" +CANDIDATE_FILENAME_TEMPLATE = "microcosm_uk_{calibration_year}_local.h5" LOCAL_GATE_REPORT_FILENAME_TEMPLATE = ( - "populace_uk_{source_year}_rowwise_candidate.local_gates.json" + "microcosm_uk_{calibration_year}_local.local_gates.json" ) MANIFEST_FILENAME = "rowwise_candidate_manifest.json" SOLVE_DIAGNOSTICS_FILENAME = "solve_diagnostics.csv" CALIBRATION_DIAGNOSTICS_FILENAME = "calibration_diagnostics.json" AREA_SUPPORT_FILENAME = "area_support_summary.csv" PAST_CAP_FILENAME = "past_cap_census.json" +LOCAL_REGISTRY_FILENAME = "local_target_registry.json" _CONSERVE_MASS = False _TARGET_RECORDS: int | None = None @@ -133,14 +161,289 @@ def __init__( self.ladder = ladder -def _new_candidate_build_id(*, seed: int, timestamp: datetime) -> str: +def _new_candidate_build_id( + *, seed: int, timestamp: datetime, rung: str = "f100" +) -> str: instant = timestamp.astimezone(UTC) return ( - f"uk-local-candidate-f100-s{seed}-" + f"uk-local-candidate-{rung}-s{seed}-" f"{instant.strftime('%Y%m%dT%H%M%SZ')}-{uuid.uuid4().hex[:8]}" ) +def _candidate_clone_counts_argument(value: str) -> tuple[int, ...]: + parts = value.split(",") + if not value.strip() or any(not part.strip() for part in parts): + raise argparse.ArgumentTypeError( + "candidate clone counts must be a non-empty comma list of positive integers" + ) + try: + counts = [int(part.strip()) for part in parts] + except ValueError as error: + raise argparse.ArgumentTypeError( + "candidate clone counts must be a comma list of positive integers" + ) from error + if any(count <= 0 for count in counts): + raise argparse.ArgumentTypeError( + "candidate clone counts must all be positive integers" + ) + return tuple(sorted(set(counts))) + + +def _sample_candidate_frame( + frame, + *, + fraction: float, + seed: int, +) -> tuple[Any, dict[str, Any]]: + """Sample spine families below f100; keep the full rung untouched.""" + + pre_count = len(frame.table("household")) + if fraction == 1.0: + return frame, { + "fraction": 1.0, + "seed": int(seed), + "rung_token": UK_SAMPLE_RUNG_TOKENS[fraction], + "sampled": False, + "pre_household_count": int(pre_count), + "post_household_count": int(pre_count), + } + + sampled, receipt = sample_uk_spine_frame( + frame, + fraction=fraction, + seed=seed, + ) + return sampled, {"sampled": True, **receipt} + + +def _resolve_candidate_engine_surface( + frame, + national_registry, + *, + period: int, + scratch_dir: Path, + band_edge_registry=None, + resolver_factory=UKMeasureResolver, + blocks: int = 1, +) -> tuple[Any, Any, UKRowwiseNationalRows, dict[str, pd.DataFrame], dict[str, Any]]: + """Resolve national inputs and local metrics on the cloned frame. + + ``blocks=1`` uses one scratch-mode engine for the whole clone. The + reviewed escape hatch ``blocks=K`` resolves each clone index separately, + then rejoins every entity-level prepared column by its stable entity id so + the full-frame target materialization and single solve retain frame order. + """ + + household = frame.table("household") + if blocks < 1: + raise ValueError("engine resolution blocks must be positive.") + if blocks == 1: + block_frames = [(None, frame)] + else: + clone_column = ladder_clone_index_column("household") + if clone_column not in household.columns: + raise ValueError(f"per-clone engine resolution requires {clone_column}.") + clone_indices = tuple(sorted(household[clone_column].unique().tolist())) + if len(clone_indices) != blocks: + raise ValueError( + "engine resolution blocks must match the realized clone indices: " + f"requested {blocks}, found {clone_indices}." + ) + person = frame.table("person") + block_frames = [] + for clone_index in clone_indices: + household_ids = set( + household.loc[ + household[clone_column] == clone_index, + "household_id", + ].tolist() + ) + person_mask = person["person_household_id"].isin(household_ids) + block = frame.select(person_mask) + # The block carries a K-th of the cloned mass while its log still + # ends on the full-clone record, and the scratch export validates + # the chain. Declare the subset explicitly: old = the cloned + # total, new = the block total, reason naming the block. The block + # frame is engine scratch and is discarded after resolution. + block_weights = block.weights_for("household") + full_total = float(frame.weights_for("household").total) + block_total = float(block_weights.total) + subset_record = MassChangeRecord( + entity="household", + old_total=full_total, + new_total=block_total, + declared_factor=block_total / full_total, + reason=( + f"engine resolution block {clone_index} of {blocks}: " + "scratch subset of the cloned frame for measure " + "resolution only, discarded after resolution" + ), + ) + block = Frame( + { + **{name: block.table(name) for name in block.entities}, + **{name: block.link(name) for name in block.links}, + }, + block.schema, + { + entity: block.weights_for(entity) + for entity in block.weighted_entities + }, + block.strata, + mass_log=(*block.mass_log, subset_record), + metadata=block.metadata, + ) + block_frames.append((clone_index, block)) + + measure_parts: dict[tuple[str, str], list[pd.Series]] = {} + metric_parts: dict[str, list[pd.DataFrame]] = { + "constituency": [], + "la": [], + } + resolver_receipts: list[Mapping[str, Any]] = [] + national_input_keys: set[tuple[str, str]] | None = None + for clone_index, block_frame in block_frames: + block_scratch = ( + scratch_dir if clone_index is None else scratch_dir / f"clone-{clone_index}" + ) + resolver = resolver_factory( + simulation_source=None, + scratch_dir=block_scratch, + year=period, + frame=block_frame, + ) + resolution = resolve_target_measures( + lambda block_frame=block_frame: CalibrationFrameAdapter(block_frame), + national_registry, + resolver, + period=period, + ) + keys = set(resolution.measure_inputs) + if national_input_keys is None: + national_input_keys = keys + elif keys != national_input_keys: + raise RuntimeError( + "per-clone engine resolution returned inconsistent national inputs." + ) + for (entity, variable), values in resolution.measure_inputs.items(): + entity_table = block_frame.table(entity) + entity_id = f"{entity}_id" + measure_parts.setdefault((entity, variable), []).append( + pd.Series( + np.asarray(values), + index=entity_table[entity_id].tolist(), + ) + ) + block_household_ids = block_frame.table("household")["household_id"].tolist() + for area_type in metric_parts: + metric_parts[area_type].append( + compute_household_metrics( + resolver.simulation, + area_type, + period=period, + household_ids=block_household_ids, + ) + ) + resolver_receipts.append(resolver.receipt()) + del resolver + simulation_input = block_scratch / "simulation-input.h5" + simulation_input.unlink(missing_ok=True) + try: + block_scratch.rmdir() + except OSError: + pass + + measure_inputs: dict[tuple[str, str], np.ndarray] = {} + for (entity, variable), parts in measure_parts.items(): + combined = pd.concat(parts) + if combined.index.has_duplicates: + raise RuntimeError( + f"per-clone engine resolution duplicated {entity} ids for {variable}." + ) + ordered_ids = frame.table(entity)[f"{entity}_id"] + ordered = combined.reindex(ordered_ids.tolist()) + if ordered.isna().any(): + raise RuntimeError( + f"per-clone engine resolution missed {entity} rows for {variable}." + ) + measure_inputs[(entity, variable)] = ordered.to_numpy() + + full_household_ids = household["household_id"].tolist() + local_metrics = {} + for area_type, parts in metric_parts.items(): + combined = pd.concat(parts) + if combined.index.has_duplicates: + raise RuntimeError( + f"per-clone engine resolution duplicated {area_type} household ids." + ) + ordered = combined.reindex(full_household_ids) + if ordered.isna().any().any(): + raise RuntimeError( + f"per-clone engine resolution missed {area_type} household rows." + ) + local_metrics[area_type] = ordered + + adapter = CalibrationFrameAdapter(frame) + # Injected engine inputs are scratch state for materialization only: + # they must be dropped before the prepared frame is assembled, or the + # flattening rule refuses columns that now exist on two entities + # (region, esa_* on the live spine). Same lifecycle as the national stage. + original_columns = { + entity: set(table.columns) for entity, table in adapter.tables.items() + } + inject_measure_inputs(adapter, measure_inputs) + materialized = materialize_uk_ledger_targets( + adapter, + national_registry, + period=period, + band_edge_registry=( + national_registry if band_edge_registry is None else band_edge_registry + ), + ) + if materialized.skipped: + raise RuntimeError( + "candidate national target materialization skipped row(s): " + f"{[skip.__dict__ for skip in materialized.skipped]}." + ) + modes = {receipt.get("mode") for receipt in resolver_receipts} + versions = {receipt.get("policyengine_uk_version") for receipt in resolver_receipts} + if len(modes) != 1 or len(versions) != 1: + raise RuntimeError("per-clone engine resolver provenance is inconsistent.") + receipt = { + "mode": next(iter(modes)), + "engine_version": next(iter(versions)), + "households": len(frame.table("household")), + "persons": len(frame.table("person")), + "benunits": len(frame.table("benunit")), + "national_inputs": len(measure_inputs), + "local_metrics": { + area_type: len(metrics.columns) + for area_type, metrics in local_metrics.items() + }, + "blocks": blocks, + } + if blocks > 1: + receipt["deviation"] = "per_clone_block_engine_resolution" + try: + scratch_dir.rmdir() + except OSError: + pass + drop_injected_measure_inputs(adapter, measure_inputs, original_columns) + national_rows = UKRowwiseNationalRows( + targets=national_registry.to_target_set(), + registry=national_registry, + families=tuple(sorted({spec.family for spec in national_registry.specs})), + ) + return ( + adapter.prepared_frame(), + adapter.restore, + national_rows, + local_metrics, + receipt, + ) + + def _pin_from_artifact(info: Mapping[str, Any]) -> dict[str, object]: return { "sha256": str(info["sha256"]), @@ -173,13 +476,14 @@ def _record_candidate_attempt( disposition: str, predecessor: str | None, spool_dir: Path, + rung: str = "f100", ) -> Path: return record_terminal_attempt( state=state, started_at=started_at, started_ts=started_ts, pipeline=_UK_CANDIDATE_PIPELINE, - rung="f100", + rung=rung, seed=seed, code_pin=code_pin, disposition=disposition, @@ -199,6 +503,7 @@ def _record_candidate_error( predecessor: str | None, base_dir: Path, spool_dir: Path, + rung: str = "f100", ) -> None: error_path = write_error_receipt( error_receipt_path(base_dir, build_id=state.build_id), @@ -219,6 +524,7 @@ def _record_candidate_error( disposition="failed", predecessor=predecessor, spool_dir=spool_dir, + rung=rung, ) @@ -230,21 +536,69 @@ def _parse_args(argv: list[str] | None = None) -> argparse.Namespace: required=True, help="National Microcosm UK staging H5.", ) + parser.add_argument( + "--input-sha256", + type=sha256_argument, + help="Pinned SHA-256 of --input-h5 (required for the joint registry path).", + ) parser.add_argument( "--ladder", type=Path, required=True, help="Full-UK OA geography ladder NPZ.", ) + parser.add_argument( + "--ladder-sha256", + type=sha256_argument, + help="Pinned SHA-256 of --ladder (required for the joint registry path).", + ) + parser.add_argument("--ledger-facts", type=Path) + parser.add_argument("--ledger-facts-sha256", type=sha256_argument) + parser.add_argument("--ledger-manifest-sha256", type=sha256_argument) + parser.add_argument("--measure-exclusions", type=Path) + parser.add_argument("--register-json", type=Path) + parser.add_argument( + "--target-weight-rule", + choices=("uniform", "grain_equal"), + default="uniform", + ) + parser.add_argument("--release-candidate", action="store_true") + parser.add_argument("--skip-holdout", action="store_true") parser.add_argument( "--out", type=Path, required=True, help="Output directory for the candidate H5 and evidence sidecars.", ) - parser.add_argument("--n-clones", type=int, default=2) + parser.add_argument("--n-clones", type=int, default=4) + parser.add_argument( + "--candidate-clone-counts", + type=_candidate_clone_counts_argument, + help="Dry-run only comma-separated candidate clone counts.", + ) parser.add_argument("--seed", type=int, default=42) - parser.add_argument("--source-year", type=int) + parser.add_argument( + "--sample-fraction", + type=float, + default=1.0, + help="Spine sampling rung: 0.01, 0.10, or 1.0.", + ) + parser.add_argument( + "--sample-seed", + type=int, + default=UK_SAMPLE_SEED_DEFAULT, + ) + parser.add_argument( + "--engine-blocks", + type=int, + default=1, + help="Resolve one engine or one block per clone (must equal --n-clones).", + ) + parser.add_argument( + "--source-year", + type=int, + help="Survey year recorded for lineage (calibration uses the FRS release year).", + ) parser.add_argument("--source-lineage-modulus", type=int) parser.add_argument("--epochs", type=int, default=512) parser.add_argument("--learning-rate", type=float, default=0.15) @@ -276,6 +630,8 @@ def main(argv: list[str] | None = None) -> int: args = _parse_args(argv) _validate_cli_args(args) + if args.candidate_clone_counts is not None and not args.dry_run: + raise ValueError("--candidate-clone-counts is valid only with --dry-run.") if _CONSERVE_MASS: raise NotImplementedError( "the candidate manifest's calibration_mass_change block reads " @@ -291,7 +647,11 @@ def main(argv: list[str] | None = None) -> int: started_ts = datetime.now(UTC) digest = preflight_digest(_UK_CANDIDATE_PIPELINE) state = AttemptState( - build_id=_new_candidate_build_id(seed=args.seed, timestamp=started_ts), + build_id=_new_candidate_build_id( + seed=args.seed, + timestamp=started_ts, + rung=UK_SAMPLE_RUNG_TOKENS[args.sample_fraction], + ), identity_digest=digest, input_pins_digest=digest, phases_reached=["attempt_started"], @@ -340,6 +700,8 @@ def _run_candidate( input_artifact = _artifact_info(input_h5) ladder_artifact = _artifact_info(ladder_path) + _verify_requested_pin("--input-h5", input_artifact, requested=args.input_sha256) + _verify_requested_pin("--ladder", ladder_artifact, requested=args.ladder_sha256) pins = { "dataset": _pin_from_artifact(input_artifact), "ladder": _pin_from_artifact(ladder_artifact), @@ -354,6 +716,26 @@ def _run_candidate( append_phase(state, "configured") append_phase(state, "inputs_pinned") national_frame, _national_provenance = load_uk_national_frame(input_h5) + calibration_year = int(load_uk_frs_release().calibration_year) + args._calibration_year = calibration_year + if args.ledger_facts is not None: + spine_sidecar_path = input_h5.with_suffix(".build.json") + spine_sidecar = load_bound_spine_sidecar( + spine_sidecar_path, + national_frame, + ) + args._spine_provenance = spine_provenance_from_sidecar( + spine_sidecar_path, + spine_sidecar, + ) + else: + args._spine_provenance = {} + national_frame, sampling = _sample_candidate_frame( + national_frame, + fraction=args.sample_fraction, + seed=args.sample_seed, + ) + args._sampling_receipt = sampling source_year = _source_year( args.source_year, time_period=uk_time_period(national_frame), @@ -366,7 +748,11 @@ def _run_candidate( args=args, source_year=source_year, ) - output_paths = _output_paths(out_dir, source_year=source_year) + output_paths = _output_paths( + out_dir, + source_year=source_year, + calibration_year=calibration_year, + ) _validate_output_paths( output_paths, input_h5=input_h5, @@ -374,6 +760,20 @@ def _run_candidate( ) ladder = load_uk_oa_ladder(ladder_path) target_provenance = ladder_target_provenance(ladder) + joint_inputs = _load_joint_target_inputs(args) + doctrine, doctrine_override = uk_local_doctrine_with_overrides( + UK_LOCAL_SOLVE_DOCTRINE, + ( + {} + if args.target_weight_rule == "uniform" + else {"target_weight_rule": args.target_weight_rule} + ), + ) + args._doctrine_override_receipt = doctrine_override + if doctrine.target_weight_rule != args.target_weight_rule: + raise RuntimeError( + "local doctrine override did not bind the requested rule." + ) print("cloning through the ladder route...", file=sys.stderr, flush=True) assignment = _clone_with_ladder_binding( @@ -389,17 +789,89 @@ def _run_candidate( if state is not None: append_phase(state, "cloned") - print("binding census household targets...", file=sys.stderr, flush=True) - household, problem, cross_grain = _build_bound_problem( - assignment, - target_ladder=ladder, - ) + if joint_inputs is not None and args.dry_run: + plan = _joint_dry_run_plan( + args, + clone=clone, + sampled_spine=national_frame, + ladder=ladder, + joint_inputs=joint_inputs, + source_year=source_year, + input_artifact=input_artifact, + ladder_artifact=ladder_artifact, + target_provenance=target_provenance, + ) + _assert_artifacts_unchanged( + input_h5=input_h5, + input_artifact=input_artifact, + ladder_path=ladder_path, + ladder_artifact=ladder_artifact, + ) + print(_json_text(plan), end="") + return 0 + + if joint_inputs is None: + print("binding census household targets...", file=sys.stderr, flush=True) + household, problem, cross_grain = _build_bound_problem( + assignment, + target_ladder=ladder, + ) + solve_frame = clone.frame + restore = None + national_rows = None + bound_families = BOUND_TARGET_FAMILIES + measure_resolution: Mapping[str, Any] = {} + args._rung_surface = { + "fraction": float(args.sample_fraction), + "dropped_cells": 0, + "dropped_by_grain": {}, + "dropped_by_family": {}, + } + else: + print("resolving joint local and national surface...", file=sys.stderr) + ( + solve_frame, + restore, + national_rows, + local_metrics, + measure_resolution, + ) = _resolve_candidate_engine_surface( + clone.frame, + joint_inputs["national_registry"], + period=joint_inputs["calibration_year"], + scratch_dir=out_dir.parent + / f".{out_dir.name}.candidate-engine-scratch", + band_edge_registry=joint_inputs["band_edge_registry"], + blocks=args.engine_blocks, + ) + ( + household, + problem, + cross_grain, + bound_families, + rung_surface, + ) = _build_joint_problem( + assignment, + target_ladder=ladder, + local_registry=joint_inputs["local_registry"], + national_registry=joint_inputs["national_registry"], + local_metrics=local_metrics, + period=joint_inputs["calibration_year"], + sample_fraction=args.sample_fraction, + reviewed_unbound_higher_targets=joint_inputs[ + "reviewed_unbound_higher_targets" + ], + ) + args._rung_surface = rung_surface + args._bound_families = tuple(bound_families) + args._joint_inputs_receipt = joint_inputs + args._measure_resolution = dict(measure_resolution) if state is not None: append_phase(state, "targets_bound") if args.dry_run: binding_adjudications = require_adjudicated_uk_local_binding( - BOUND_TARGET_FAMILIES, + bound_families, problem.target_frame, ) _assert_artifacts_unchanged( @@ -439,9 +911,12 @@ def _run_candidate( flush=True, ) solve = solve_uk_rowwise_weights_under_doctrine( - clone.frame, + solve_frame, problem, - bound_families=BOUND_TARGET_FAMILIES, + bound_families=bound_families, + national_rows=national_rows, + target_weight_rule=args.target_weight_rule, + restore=restore, epochs=args.epochs, learning_rate=args.learning_rate, conserve_mass=_CONSERVE_MASS, @@ -472,6 +947,9 @@ def _run_candidate( target_registry, target_geography_levels = _local_diagnostics_registry( solve, problem, + national_registry=( + None if joint_inputs is None else joint_inputs["national_registry"] + ), ) try: gate_report, candidate_gate = _run_local_gate_battery( @@ -480,35 +958,94 @@ def _run_candidate( diagnostics=local_diagnostics, report_path=output_paths["local_gates"], release_id=state.build_id, + enforce_only=( + None + if args.sample_fraction == 1.0 + else ("uk_local_geography_ladder_post_calibration",) + ), ) except GateBatteryBlockedError: - _apply_gate_verdicts( - state, - json.loads(output_paths["local_gates"].read_text(encoding="utf-8")), - output_paths["local_gates"], + # Write-then-block, extended to the whole evidence bundle: a + # release-blocking failure at f100 still writes the diagnostics, + # manifest and artifact (marked unreleasable) so the block can be + # reviewed; only a non-passing ladder verdict is structural and + # re-raises. The Logbook row records the attempt as failed. + gate_report = json.loads( + output_paths["local_gates"].read_text(encoding="utf-8") ) - raise - _apply_gate_verdicts(state, gate_report, output_paths["local_gates"]) - append_phase(state, "candidate_gated") - - rotated_holdout = rotated_uk_local_holdout( - clone.frame, - problem, - epochs=args.epochs, - learning_rate=args.learning_rate, - conserve_mass=_CONSERVE_MASS, - target_records=_TARGET_RECORDS, - l0_lambda=_L0_LAMBDA, - budget_iters=_BUDGET_ITERS, - solve_seed=args.seed, + _apply_gate_verdicts(state, gate_report, output_paths["local_gates"]) + ladder_entry = gate_report["gates"].get( + "uk_local_geography_ladder_post_calibration", {} + ) + if ladder_entry.get("status") != "passed": + raise + candidate_gate = clone.gate + blocked_failures, diagnostic_failures = _gate_failures_by_criticality( + gate_report + ) + if not blocked_failures: + # The battery blocked, yet the persisted report names no + # failed release-blocking entry: the report and the error + # disagree, which is structural. + raise + unenforced_failures = [] + else: + _apply_gate_verdicts(state, gate_report, output_paths["local_gates"]) + # Nothing blocked. Release-blocking entries can still hold a + # failure here: below f100 only the ladder gate is enforced, and + # a dev build tolerates absent evidence. Those lines are reported + # as not enforced, never as a block. + unenforced_failures, diagnostic_failures = _gate_failures_by_criticality( + gate_report + ) + blocked_failures = [] + args._gate_report = gate_report + args._blocked_failures = blocked_failures + args._diagnostic_failures = diagnostic_failures + args._unenforced_release_failures = ( + [] if blocked_failures else unenforced_failures + ) + append_phase( + state, "candidate_gated" if not blocked_failures else "candidate_blocked" ) + if args.skip_holdout: + rotated_holdout = {"skipped": True} + else: + rotated_holdout = rotated_uk_local_holdout( + solve_frame, + problem, + bound_families=bound_families, + national_rows=national_rows, + target_weight_rule=args.target_weight_rule, + restore=restore, + epochs=args.epochs, + learning_rate=args.learning_rate, + conserve_mass=_CONSERVE_MASS, + target_records=_TARGET_RECORDS, + l0_lambda=_L0_LAMBDA, + budget_iters=_BUDGET_ITERS, + solve_seed=args.seed, + ) + args._rotated_holdout = rotated_holdout + candidate = dataclasses.replace( clone, frame=solve.frame, gate=candidate_gate, output_path=None, ) + support_by_grain = { + ("la" if grain == "local_authority" else str(grain)): rows.reset_index( + drop=True + ) + for grain, rows in support.groupby("geography_level", sort=True) + } + args._support_limited_misses = uk_support_limited_misses( + solve.diagnostics, + support_by_grain, + max_abs_relative_error=0.25, + ) _assert_artifacts_unchanged( input_h5=input_h5, input_artifact=input_artifact, @@ -546,12 +1083,20 @@ def _run_candidate( started_ts=started_ts, seed=args.seed, code_pin=code_pin, - disposition="iterating", + disposition="failed" if blocked_failures else "iterating", predecessor=predecessor, spool_dir=out_dir / "logbook-spool", + rung=UK_SAMPLE_RUNG_TOKENS[args.sample_fraction], ) print(f"Wrote Logbook row: {spool_path}", file=sys.stderr) print(_json_text(manifest), end="") + if blocked_failures: + print( + "Gate battery blocked the artifact at f100; evidence bundle " + f"written, artifact unreleasable: {blocked_failures[:5]}", + file=sys.stderr, + ) + return 1 return 0 except Exception as error: if attempt is None: @@ -575,6 +1120,7 @@ def _run_candidate( predecessor=failed_predecessor, base_dir=out_dir, spool_dir=out_dir / "logbook-spool", + rung=UK_SAMPLE_RUNG_TOKENS[args.sample_fraction], ) raise @@ -601,6 +1147,411 @@ def _clone_with_ladder_binding( return _LadderAssignment(clone, ladder) +def _verify_requested_pin( + label: str, + artifact: Mapping[str, Any], + *, + requested: str | None, +) -> None: + if requested is None: + artifact["pin_verified"] = False + return + measured = str(artifact["sha256"]) + if measured != requested: + raise SystemExit( + f"error: {label} sha mismatch: measured {measured}, pinned {requested}" + ) + artifact["pin_verified"] = True + + +def _load_joint_target_inputs(args: argparse.Namespace) -> dict[str, Any] | None: + if args.ledger_facts is None: + return None + artifact = load_ledger_consumer_artifact( + args.ledger_facts, + expected_facts_sha256=args.ledger_facts_sha256, + expected_manifest_sha256=args.ledger_manifest_sha256, + ) + calibration_year = int(load_uk_frs_release().calibration_year) + national_compilation = compile_uk_target_registry( + artifact.facts, target_period=calibration_year + ) + if national_compilation.unsupported: + raise SystemExit( + f"{len(national_compilation.unsupported)} national target references " + "failed to compile" + ) + local_compilation = compile_uk_local_target_registry( + artifact.facts, + target_period=calibration_year, + crosswalk=load_uk_local_area_crosswalk(), + ) + if local_compilation.unsupported: + raise SystemExit( + f"{len(local_compilation.unsupported)} local target references " + "failed to compile" + ) + exclusions = load_uk_calibration_measure_exclusions(args.measure_exclusions) + national_registry, exclusion_receipt = apply_uk_calibration_measure_exclusions( + national_compilation.registry, exclusions + ) + national_specs_by_name = { + spec.name: spec for spec in national_compilation.registry.specs + } + reviewed_unbound_higher_targets = { + str( + national_specs_by_name[name].metadata.get( + "contract_target_id", national_specs_by_name[name].name + ) + ): record + for name, record in exclusion_receipt.items() + } + if args.register_json is not None: + try: + frozen = TargetRegistry.from_json(args.register_json) + except ValueError as error: + raise SystemExit( + f"error: frozen scoring register is unusable: {error}" + ) from error + if frozen.version != national_registry.version: + raise SystemExit( + "re-derived register differs from the frozen scoring register: " + f"{national_registry.version} vs {frozen.version}" + ) + return { + "artifact": artifact, + "calibration_year": calibration_year, + "national_registry": national_registry, + "band_edge_registry": national_compilation.registry, + "local_registry": local_compilation.registry, + "measure_exclusions": exclusion_receipt, + "reviewed_unbound_higher_targets": reviewed_unbound_higher_targets, + } + + +def _national_contract_target_ids(registry: TargetRegistry) -> tuple[str, ...]: + return tuple( + sorted( + { + str(spec.metadata.get("contract_target_id", spec.name)) + for spec in registry.specs + } + ) + ) + + +def _joint_surface_registry( + local_registry: TargetRegistry, + national_registry: TargetRegistry, +) -> TargetRegistry: + """Put national controls beside local cells for cross-grain reconciliation.""" + + return TargetRegistry( + [*local_registry.specs, *national_registry.specs], + country="uk", + ) + + +def _build_joint_problem( + assignment: _LadderAssignment, + *, + target_ladder: UkOaLadder, + local_registry: TargetRegistry, + national_registry: TargetRegistry, + local_metrics: Mapping[str, pd.DataFrame], + period: int, + sample_fraction: float, + reviewed_unbound_higher_targets: Mapping[str, Mapping[str, object]], +) -> tuple[ + pd.DataFrame, + UKRowwiseLocalMatrix, + dict[str, Any], + tuple[str, ...], + dict[str, Any], +]: + if assignment.ladder is not target_ladder: + raise ValueError( + "assignment and targets must come from the same loaded UK OA ladder object." + ) + household = assignment.result.frame.table("household").reset_index(drop=True) + household_index = pd.Index(household["household_id"], name="household_id") + metrics = { + grain: frame.set_axis(household_index, axis="index") + for grain, frame in local_metrics.items() + } + assigned = { + "constituency": pd.Series( + household["constituency_code"].astype(str).to_numpy(), + index=household_index, + ), + "la": pd.Series( + household["local_authority_code"].astype(str).to_numpy(), + index=household_index, + ), + } + national_ids = _national_contract_target_ids(national_registry) + surface, cross_grain = uk_local_target_surface( + _joint_surface_registry(local_registry, national_registry), + target_ladder, + bound_national_target_ids=national_ids, + period=period, + reviewed_unbound_higher_targets=reviewed_unbound_higher_targets, + ) + covered = { + grain: set(values.astype(str).tolist()) for grain, values in assigned.items() + } + covered_mask = pd.Series( + [ + str(row.area_code) in covered[str(row.area_type)] + for row in surface.itertuples(index=False) + ], + index=surface.index, + dtype=bool, + ) + dropped = surface.loc[~covered_mask] + if sample_fraction < 1.0: + surface = surface.loc[covered_mask].reset_index(drop=True) + # Below f100 a covered area can still carry a nonzero cell with no metric + # support in the sample (no self-employed household among three drawn + # rows). The builder refuses such a cell at every rung; at development + # rungs the cell is dropped here and receipted instead. f100 stays strict. + unreachable = surface.iloc[0:0] + if sample_fraction < 1.0 and len(surface): + nonzero_by_grain = { + grain: (metrics[grain] != 0).groupby(assigned[grain]).sum() + for grain in metrics + } + unreachable_mask = pd.Series( + [ + float(row.value) != 0.0 + and str(row.metric) in nonzero_by_grain[str(row.area_type)].columns + and str(row.area_code) in nonzero_by_grain[str(row.area_type)].index + and int( + nonzero_by_grain[str(row.area_type)].loc[ + str(row.area_code), str(row.metric) + ] + ) + == 0 + for row in surface.itertuples(index=False) + ], + index=surface.index, + dtype=bool, + ) + unreachable = surface.loc[unreachable_mask] + surface = surface.loc[~unreachable_mask].reset_index(drop=True) + rung_surface = { + "dropped_unreachable_cells": int(len(unreachable)), + "dropped_unreachable_by_grain": { + str(key): int(value) + for key, value in unreachable.groupby("area_type").size().items() + }, + "dropped_unreachable_by_family": { + str(key): int(value) + for key, value in unreachable.groupby("family").size().items() + }, + "fraction": float(sample_fraction), + "dropped_cells": int(len(dropped) if sample_fraction < 1.0 else 0), + "dropped_by_grain": ( + { + str(key): int(value) + for key, value in dropped.groupby("area_type").size().items() + } + if sample_fraction < 1.0 + else {} + ), + "dropped_by_family": ( + { + str(key): int(value) + for key, value in dropped.groupby("family").size().items() + } + if sample_fraction < 1.0 + else {} + ), + } + rosters = { + "constituency": tuple(map(str, np.unique(target_ladder.constituency_code))), + "la": tuple(map(str, np.unique(target_ladder.local_authority_code))), + } + problem = build_uk_rowwise_local_surface_matrix( + metrics, + assigned, + surface, + area_codes_by_grain=rosters, + require_every_assigned_area_covered=(sample_fraction == 1.0), + ) + local_bound = tuple( + sorted( + { + f"{row.family}/{row.area_type}" + for row in surface[["family", "area_type"]] + .drop_duplicates() + .itertuples(index=False) + } + ) + ) + national_bound = tuple( + f"national/{family}" + for family in sorted({spec.family for spec in national_registry.specs}) + ) + return ( + household, + problem, + cross_grain, + (*local_bound, *national_bound), + rung_surface, + ) + + +def _joint_dry_run_plan( + args: argparse.Namespace, + *, + clone: UKLadderRowwiseDatasetResult, + sampled_spine: Any, + ladder: UkOaLadder, + joint_inputs: Mapping[str, Any], + source_year: int, + input_artifact: Mapping[str, Any], + ladder_artifact: Mapping[str, Any], + target_provenance: Mapping[str, Any], +) -> dict[str, Any]: + national_registry = joint_inputs["national_registry"] + surface, cross_grain = uk_local_target_surface( + _joint_surface_registry( + joint_inputs["local_registry"], + national_registry, + ), + ladder, + bound_national_target_ids=_national_contract_target_ids(national_registry), + period=joint_inputs["calibration_year"], + reviewed_unbound_higher_targets=joint_inputs["reviewed_unbound_higher_targets"], + ) + household = clone.frame.table("household") + covered = { + "constituency": set(household["constituency_code"].astype(str)), + "la": set(household["local_authority_code"].astype(str)), + } + covered_mask = pd.Series( + [ + str(row.area_code) in covered[str(row.area_type)] + for row in surface.itertuples(index=False) + ], + index=surface.index, + dtype=bool, + ) + dropped = surface.loc[~covered_mask] + active_surface = ( + surface.loc[covered_mask].reset_index(drop=True) + if args.sample_fraction < 1.0 + else surface + ) + household_count = len(clone.frame.table("household")) + clone_support: dict[str, object] = {} + for clone_count in args.candidate_clone_counts or (args.n_clones,): + candidate = ( + clone + if clone_count == args.n_clones + else _clone_with_ladder_binding( + sampled_spine, + ladder, + n_clones=clone_count, + seed=args.seed, + source_year=source_year, + expected_constituency_vintage=args.expected_constituency_vintage, + source_lineage_modulus=args.source_lineage_modulus, + ).result + ) + # The typed frame weights are the authority; the persisted + # household_weight column is an export artefact the loaded spine + # does not carry, so attach them the way the real support path does. + candidate_household = candidate.frame.table("household").copy() + candidate_household["household_weight"] = np.asarray( + candidate.frame.weights_for("household").values, dtype=np.float64 + ) + summaries = uk_ladder_area_support_summary(candidate_household, ladder) + clone_support[str(clone_count)] = { + grain: { + "minimum_rows": int(rows["nonzero_households"].min()), + "minimum_effective_sample_size": float( + rows["effective_sample_size"].min() + ), + "minimum_distinct_sources": int( + rows["nonzero_source_households"].min() + ), + } + for grain, rows in summaries.items() + } + return { + "schema_version": 2, + "build_kind": "uk_rowwise_calibrated_candidate_plan", + "dry_run": True, + "survey_year": source_year, + "calibration_year": joint_inputs["calibration_year"], + "identity": { + "spine": dict(input_artifact), + "ladder": dict(ladder_artifact), + "ledger": joint_inputs["artifact"].provenance(), + }, + "sampling": dict(args._sampling_receipt), + "rung_surface": { + "rung": UK_SAMPLE_RUNG_TOKENS[args.sample_fraction], + "fraction": args.sample_fraction, + "dropped_cells": int(len(dropped) if args.sample_fraction < 1.0 else 0), + "dropped_by_grain": ( + { + str(key): int(value) + for key, value in dropped.groupby("area_type").size().items() + } + if args.sample_fraction < 1.0 + else {} + ), + "dropped_by_family": ( + { + str(key): int(value) + for key, value in dropped.groupby("family").size().items() + } + if args.sample_fraction < 1.0 + else {} + ), + "unreachable_check": "deferred_to_build", + }, + "vintages": _local_vintage_census(joint_inputs["local_registry"]), + "cross_grain": cross_grain, + "matrix": { + "rows": int(len(active_surface) + len(national_registry.specs)), + "columns": household_count, + "local_rows": len(active_surface), + "national_rows": len(national_registry.specs), + }, + "candidate_clone_counts": list(args.candidate_clone_counts or (args.n_clones,)), + "candidate_clone_support": clone_support, + "releasable": False, + "engine": "not_run", + "ladder_target_provenance": dict(target_provenance), + } + + +def _local_vintage_census(registry: TargetRegistry) -> list[dict[str, object]]: + counts: dict[tuple[str, str, str, str], int] = {} + for spec in registry.specs: + resolved = str(spec.metadata.get("ledger_fact_period", "")) + target = str(spec.period) + if not resolved or resolved == target: + continue + level, _ = _spec_geography(spec) + key = (spec.family, level, resolved, target) + counts[key] = counts.get(key, 0) + 1 + return [ + { + "family": family, + "geography_level": level, + "resolved_period": resolved, + "target_period": target, + "cells": cells, + } + for (family, level, resolved, target), cells in sorted(counts.items()) + ] + + def _build_bound_problem( assignment: _LadderAssignment, *, @@ -641,9 +1592,7 @@ def _build_bound_problem( BOUND_NATIONAL_TARGETS, ) targets = targets.copy() - targets["households"] = reconciled_surface["value"].to_numpy( - dtype=np.float64 - ) + targets["households"] = reconciled_surface["value"].to_numpy(dtype=np.float64) problem = build_uk_rowwise_local_matrix( metrics, assigned, @@ -651,10 +1600,14 @@ def _build_bound_problem( area_type="constituency", code_column="code", ) - return household, problem, { - "bound_national_targets": list(BOUND_NATIONAL_TARGETS), - **cross_grain, - } + return ( + household, + problem, + { + "bound_national_targets": list(BOUND_NATIONAL_TARGETS), + **cross_grain, + }, + ) def _candidate_area_support( @@ -687,43 +1640,43 @@ def _candidate_area_support( def _local_gate_diagnostics(diagnostics: pd.DataFrame) -> pd.DataFrame: - family_by_area_type: dict[str, str] = {} - for bound_family in BOUND_TARGET_FAMILIES: - family, separator, area_type = bound_family.partition("/") - if not family or not separator or not area_type: - raise ValueError( - f"bound target family {bound_family!r} must be family/area_type." - ) - if area_type in family_by_area_type: - raise ValueError( - f"multiple bound target families claim area type {area_type!r}." - ) - family_by_area_type[area_type] = family result = diagnostics.copy() - result["family"] = result["area_type"].map(family_by_area_type) - if result["family"].isna().any(): - unknown = sorted(result.loc[result["family"].isna(), "area_type"].unique()) - raise ValueError( - f"local diagnostics contain unclassified area type(s): {unknown}." - ) + required = {"family", "area_type", "area_code", "metric"} + missing = sorted(required - set(result.columns)) + if missing: + raise ValueError(f"local diagnostics are missing binding columns {missing}.") + if result[list(required)].isna().any().any(): + raise ValueError("local diagnostics contain unclassified binding rows.") return result def _local_diagnostics_registry( solve: UKRowwiseDoctrineSolve, problem: UKRowwiseLocalMatrix, + *, + national_registry: TargetRegistry | None = None, ) -> tuple[TargetRegistry, dict[str, str]]: targets = tuple(solve.calibration_result.problem.targets) - if len(targets) != len(problem.target_frame): - raise RuntimeError("local diagnostics registry is not aligned to the solve.") + expected = len(problem.target_frame) + ( + 0 if national_registry is None else len(national_registry.specs) + ) + if len(targets) != expected: + raise RuntimeError( + "candidate diagnostics registry is not aligned to the solve." + ) specs: list[TargetSpec] = [] geography: dict[str, str] = {} for target, row in zip( - targets, + targets[: len(problem.target_frame)], problem.target_frame.itertuples(index=False), strict=True, ): metric = str(row.metric) + family = ( + str(row.family) + if "family" in problem.target_frame.columns + else local_target_census.family_for_metric(metric) + ) spec = TargetSpec( name=str(target.name), entity=str(target.entity), @@ -732,11 +1685,16 @@ def _local_diagnostics_registry( filter=f"rowwise_area:{row.area_code}", period=target.period, source=str(target.source), - family=local_target_census.family_for_metric(metric), + family=family, metadata={key: str(value) for key, value in target.metadata.items()}, ) specs.append(spec) geography[spec.to_target().row_name] = str(row.area_type) + if national_registry is not None: + specs.extend(national_registry.specs) + for spec in national_registry.specs: + level, _ = _spec_geography(spec) + geography[spec.to_target().row_name] = level return TargetRegistry(specs, country="uk"), geography @@ -747,6 +1705,7 @@ def _run_local_gate_battery( diagnostics: pd.DataFrame, report_path: Path, release_id: str, + enforce_only: tuple[str, ...] | None = None, ) -> tuple[dict[str, object], GateResult]: manifest = uk_scoped_gate_manifest( UK_LOCAL_GATE_SCOPE, @@ -767,21 +1726,48 @@ def _run_local_gate_battery( artifacts={ "uk_area_support_summary": support, "local_target_diagnostics": diagnostics, + "exclusions_evaluated_on": date.today(), }, ), ) - try: - battery.enforce("terminal", mode=BlockingMode.BLOCKS_ARTIFACT) - except GateBatteryBlockedError: - payload = battery.report_payload() - finalize_uk_scoped_gate_report( - payload, - posture="local_candidate", - scope_exclusions=uk_local_gate_scope_exclusions(), - aggregate_admin_measurement=None, - ) - atomic_write_json(report_path, payload) - raise + if enforce_only is None: + try: + battery.enforce("terminal", mode=BlockingMode.BLOCKS_ARTIFACT) + except GateBatteryBlockedError: + payload = battery.report_payload() + finalize_uk_scoped_gate_report( + payload, + posture="local_candidate", + scope_exclusions=uk_local_gate_scope_exclusions(), + aggregate_admin_measurement=None, + ) + atomic_write_json(report_path, payload) + raise + else: + unknown = sorted(set(enforce_only) - set(UK_LOCAL_GATE_SCOPE)) + if unknown: + raise ValueError(f"enforce_only names unknown local gates: {unknown}.") + selected_blocking = [ + outcome + for outcome in phase.blocking_outcomes(release_candidate=False) + if outcome.entry.id in enforce_only + ] + if selected_blocking: + payload = battery.report_payload() + finalize_uk_scoped_gate_report( + payload, + posture="local_candidate", + scope_exclusions=uk_local_gate_scope_exclusions(), + aggregate_admin_measurement=None, + ) + atomic_write_json(report_path, payload) + failures = [ + failure + for outcome in selected_blocking + if outcome.result is not None + for failure in outcome.result.failures + ] + raise GateBatteryBlockedError("terminal", failures, report_path) payload = battery.report_payload() finalize_uk_scoped_gate_report( payload, @@ -802,6 +1788,38 @@ def _run_local_gate_battery( return payload, ladder.result +def _gate_failures_by_criticality( + gate_report: Mapping[str, Any], +) -> tuple[list[str], list[str]]: + """Split a persisted battery report's failure lines by criticality. + + Returns ``(release_blocking, diagnostic)``, each entry-prefixed like + :class:`GateBatteryBlockedError`'s lines. Only ``failed`` and + ``evidence_absent`` entries are failures; ``not_applicable`` and + ``unreached`` entries are not. + """ + + blocking: list[str] = [] + diagnostic: list[str] = [] + gates = gate_report.get("gates", {}) + if not isinstance(gates, Mapping): + return blocking, diagnostic + for gate_id, payload in gates.items(): + if not isinstance(payload, Mapping): + continue + status = payload.get("status") + if status not in {"failed", "evidence_absent"}: + continue + lines = [f"[{gate_id}] {line}" for line in payload.get("failures") or ()] + if not lines: + lines = [f"[{gate_id}] {payload.get('reason') or status}"] + bucket = ( + blocking if payload.get("criticality") == "release_blocking" else diagnostic + ) + bucket.extend(lines) + return blocking, diagnostic + + def _apply_gate_verdicts( state: AttemptState, report: Mapping[str, object], @@ -836,11 +1854,11 @@ def _dry_run_plan( cross_grain: Mapping[str, Any], ) -> dict[str, Any]: return { - "schema_version": 1, + "schema_version": 2, "build_kind": "uk_rowwise_calibrated_candidate_plan", "dry_run": True, "candidate_scope": "adjudicated_partial", - "bound_target_families": list(BOUND_TARGET_FAMILIES), + "bound_target_families": list(args._bound_families), "binding_adjudications": dict(binding_adjudications), "cross_grain": dict(cross_grain), "ladder_target_provenance": dict(target_provenance), @@ -848,6 +1866,19 @@ def _dry_run_plan( "dataset": dict(input_artifact), "ladder": dict(ladder_artifact), }, + "sampling": dict(args._sampling_receipt), + "survey_year": source_year, + "calibration_year": ( + args._joint_inputs_receipt["calibration_year"] + if args._joint_inputs_receipt is not None + else source_year + ), + "rung_surface": { + "rung": UK_SAMPLE_RUNG_TOKENS[args.sample_fraction], + "fraction": args.sample_fraction, + "unreachable_check": "completed", + }, + "releasable": args.sample_fraction == 1.0, "parameters": _parameters(args, source_year=source_year), "shapes": { "person": list(clone.frame.table("person").shape), @@ -898,9 +1929,24 @@ def _write_output_bundle( flush=True, ) write_uk_rowwise_dataset(candidate, staged["dataset"]) - local_diagnostics.to_csv(staged["diagnostics"], index=False) + solve.diagnostics.to_csv(staged["diagnostics"], index=False) + support = support.copy() + support["support_below_floor"] = ( + (support["assigned_households"] < 50) + | (support["effective_sample_size"] < 50.0) + | (support["nonzero_source_households"] < 50) + ) support.to_csv(staged["support"], index=False) staged["past_cap"].write_text(_json_text(dict(solve.past_cap_census or {}))) + local_registry = _local_output_registry( + problem, + period=( + args._joint_inputs_receipt["calibration_year"] + if args._joint_inputs_receipt is not None + else source_year + ), + ) + local_registry.to_json(staged["local_registry"]) write_uk_calibration_diagnostics( solve.calibration_result, staged["calibration_diagnostics"], @@ -917,6 +1963,9 @@ def _write_output_bundle( calibration_diagnostics = json.loads( staged["calibration_diagnostics"].read_text(encoding="utf-8") ) + args._weakest_areas_by_fit = calibration_diagnostics["uk_diagnostics"][ + "weakest_areas_by_fit" + ] outputs = { "dataset": _artifact_info( @@ -940,6 +1989,10 @@ def _write_output_bundle( reported_path=output_paths["calibration_diagnostics"], ), "local_gate_report": _artifact_info(output_paths["local_gates"]), + "local_target_registry": _artifact_info( + staged["local_registry"], + reported_path=output_paths["local_registry"], + ), } manifest = _manifest( args, @@ -985,13 +2038,48 @@ def _manifest( old_total = float(calibration_record.old_total) new_total = float(calibration_record.new_total) past_cap = dict(solve.past_cap_census or {}) + gate_rows = args._gate_report.get("gates", {}) + # ``releasable`` follows the battery's own doctrine: release-blocking + # entries decide, diagnostic entries (target_fit, weight_ratio, ...) are + # reported but never veto. ``failing_gate_ids`` still lists every + # non-passing entry of either criticality. + release_gate_rows = { + gate_id: payload + for gate_id, payload in gate_rows.items() + if isinstance(payload, Mapping) + and payload.get("criticality") == "release_blocking" + } + all_gates_passed = bool(release_gate_rows) and all( + payload.get("status") == "passed" for payload in release_gate_rows.values() + ) + area_gate = gate_rows.get("uk_local_area_support", {}) + area_exclusion_details = ( + area_gate.get("details", {}) if isinstance(area_gate, Mapping) else {} + ) + ladder_rows = int( + problem.target_frame["target_name"] + .astype(str) + .str.startswith("external:census_households/households@") + .sum() + ) + local_rows = int(len(problem.target_frame) - ladder_rows) + sample_stage = ( + [] + if args.sample_fraction == 1.0 + else [ + { + "stage": "sample", + "kind": uk_household_weight_kind(clone.frame).value, + } + ] + ) return { - "schema_version": 1, + "schema_version": 2, "build_kind": "uk_rowwise_calibrated_candidate", "candidate_scope": "adjudicated_partial", "created_at": datetime.now(UTC).isoformat(), "git_commit": _git_commit(), - "bound_target_families": list(BOUND_TARGET_FAMILIES), + "bound_target_families": list(args._bound_families), "binding_adjudications": dict(solve.binding_adjudications), "cross_grain": dict(cross_grain), "ladder_target_provenance": dict(target_provenance), @@ -1000,7 +2088,55 @@ def _manifest( "dataset": dict(input_artifact), "ladder": dict(ladder_artifact), }, + "identity": { + "spine": { + **dict(input_artifact), + "spine_provenance": dict(args._spine_provenance), + }, + "ladder": { + **dict(ladder_artifact), + "layer_vintages": dict(target_provenance), + "matches_local_area_crosswalk_pin": True, + }, + **( + {"ledger": args._joint_inputs_receipt["artifact"].provenance()} + if args._joint_inputs_receipt is not None + else {} + ), + "code": {"git_commit": _git_commit()}, + "runtime": runtime_provenance(), + "sampling": dict(args._sampling_receipt), + "survey_year": source_year, + "calibration_year": ( + args._joint_inputs_receipt["calibration_year"] + if args._joint_inputs_receipt is not None + else source_year + ), + }, + "sampling": dict(args._sampling_receipt), + "rung_surface": { + **dict(args._rung_surface), + "rung": UK_SAMPLE_RUNG_TOKENS[args.sample_fraction], + "fraction": args.sample_fraction, + "unreachable_check": "completed", + }, "outputs": dict(outputs), + "geography": { + "constituencies_assigned": int( + support.loc[ + support["geography_level"] == "constituency", + "area_code", + ].nunique() + ), + "local_authorities_assigned": int( + support.loc[ + support["geography_level"] == "local_authority", + "area_code", + ].nunique() + ), + "missing_geography_rows": 0, + "ladder_gate": _gate_payload(candidate.gate, phase="post_calibration"), + }, "gate": _gate_payload(candidate.gate, phase="post_calibration"), "weights": { "household_weight_kind": uk_household_weight_kind(candidate.frame).value, @@ -1009,6 +2145,7 @@ def _manifest( "stage": "staging", "kind": uk_household_weight_kind(clone.frame).value, }, + *sample_stage, { "stage": "ladder_clone", "kind": uk_household_weight_kind(clone.frame).value, @@ -1028,9 +2165,24 @@ def _manifest( "declared_factor": calibration_record.declared_factor, "reason": str(calibration_record.reason), }, + "abs_delta": abs(new_total - old_total), + "declared_stretch_bound": float(UK_LOCAL_MAX_WEIGHT_RATIO), + "realized_max_weight_ratio_vs_design": float( + np.max( + np.divide( + np.asarray(solve.weights, dtype=np.float64), + np.asarray(clone.frame.weights_for("household").values), + ) + ) + ), }, "solve": { - "n_targets": int(len(problem.targets)), + "n_targets": int(len(problem.targets) + len(solve.national_diagnostics)), + "n_targets_by_kind": { + "local": local_rows, + "ladder": ladder_rows, + "national": int(len(solve.national_diagnostics)), + }, "n_households": int(problem.n_households), "initial_loss": float(solve.initial_loss), "final_loss": float(solve.final_loss), @@ -1038,6 +2190,25 @@ def _manifest( "median_abs_relative_error": float(np.median(abs_errors)), "n_nonzero": int(solve.n_nonzero), "past_cap": {key: int(past_cap[key]) for key in _PAST_CAP_COUNT_KEYS}, + "loss_shape": "capped_relative_error", + "target_weight_rule": args.target_weight_rule, + "target_weight_rule_override": dict(args._doctrine_override_receipt), + "measure_resolution": dict(args._measure_resolution), + "cross_grain": dict(cross_grain), + "binding_adjudications": dict(solve.binding_adjudications), + "area_support_exclusions": { + "resource": "local_area_support_exclusions.json", + "entries_stood_on": sorted( + area_exclusion_details.get("reviewed_exclusions", {}) + ), + "stale": list(area_exclusion_details.get("stale_exclusions", [])), + "unknown": list(area_exclusion_details.get("unknown_exclusions", [])), + }, + "past_cap_by_kind": { + "local": dict(solve.past_cap_census or {}), + "national": dict(solve.national_past_cap_census or {}), + "all": dict(solve.all_past_cap_census or {}), + }, }, "diagnostics": { "schema_version": calibration_diagnostics["schema_version"], @@ -1056,7 +2227,54 @@ def _manifest( "min_assigned_households": int(support["assigned_households"].min()), "min_nonzero_households": int(support["nonzero_households"].min()), "min_effective_sample_size": float(support["effective_sample_size"].min()), + "by_geography_level": { + str(level): { + "min_assigned_households": int(rows["assigned_households"].min()), + "min_nonzero_households": int(rows["nonzero_households"].min()), + "min_effective_sample_size": float( + rows["effective_sample_size"].min() + ), + "min_nonzero_source_households": int( + rows["nonzero_source_households"].min() + ), + } + for level, rows in support.groupby("geography_level", sort=True) + }, }, + "fit": { + "local_by_family": _fit_by_family(solve.diagnostics), + "national_by_family": _fit_by_family(solve.national_diagnostics), + "weakest_families": sorted( + [ + *_fit_by_family(solve.diagnostics), + *_fit_by_family(solve.national_diagnostics), + ], + key=lambda row: ( + -float(row["worst_abs_relative_error"]), + row["family"], + ), + )[:10], + "weakest_areas_by_fit": dict(args._weakest_areas_by_fit), + "support_limited_misses": dict(args._support_limited_misses), + "rotated_holdout": dict(args._rotated_holdout), + }, + "vintages": ( + _local_vintage_census(args._joint_inputs_receipt["local_registry"]) + if args._joint_inputs_receipt is not None + else [] + ), + "failing_gate_ids": sorted( + gate_id + for gate_id, payload in gate_rows.items() + if not isinstance(payload, Mapping) or payload.get("status") != "passed" + ), + "releasable": args.sample_fraction == 1.0 and all_gates_passed, + "blocked_at_f100": bool(getattr(args, "_blocked_failures", [])), + "blocking_failures": list(getattr(args, "_blocked_failures", [])), + "diagnostic_failures": list(getattr(args, "_diagnostic_failures", [])), + "release_gate_failures_not_enforced": list( + getattr(args, "_unenforced_release_failures", []) + ), } @@ -1066,6 +2284,12 @@ def _parameters(args: argparse.Namespace, *, source_year: int) -> dict[str, Any] "seed": int(args.seed), "source_year": source_year, "source_lineage_modulus": args.source_lineage_modulus, + "sample_fraction": float(args.sample_fraction), + "sample_seed": int(args.sample_seed), + "engine_blocks": int(args.engine_blocks), + "target_weight_rule": args.target_weight_rule, + "release_candidate": bool(args.release_candidate), + "skip_holdout": bool(args.skip_holdout), "epochs": int(args.epochs), "learning_rate": float(args.learning_rate), "expected_constituency_vintage": str(args.expected_constituency_vintage), @@ -1079,6 +2303,56 @@ def _parameters(args: argparse.Namespace, *, source_year: int) -> dict[str, Any] } +def _fit_by_family(diagnostics: pd.DataFrame) -> list[dict[str, object]]: + if diagnostics.empty: + return [] + rows = [] + for family, group in diagnostics.groupby("family", sort=True): + errors = group["abs_relative_error"].to_numpy(dtype=np.float64) + worst_index = int(np.argmax(errors)) + worst = group.iloc[worst_index] + rows.append( + { + "family": str(family), + "n_targets": len(group), + "share_within_10pct": float((errors <= 0.10).mean()), + "share_within_25pct": float((errors <= 0.25).mean()), + "worst_abs_relative_error": float(errors[worst_index]), + "worst_cell": str( + worst.get("target_name", worst.get("name", "unknown")) + ), + } + ) + return rows + + +def _local_output_registry( + problem: UKRowwiseLocalMatrix, + *, + period: int, +) -> TargetRegistry: + specs = [] + for row in problem.target_frame.itertuples(index=False): + payload = row._asdict() + specs.append( + TargetSpec( + name=str(payload["target_name"]), + entity="household", + value=float(payload["value"]), + measure=str(payload["metric"]), + period=int(payload.get("period", period)), + source=str(payload.get("source", "uk_rowwise_local_surface")), + family=str(payload["family"]), + metadata={ + "area_type": str(payload["area_type"]), + "area_code": str(payload["area_code"]), + "metric": str(payload["metric"]), + }, + ) + ) + return TargetRegistry(specs, country="uk") + + def _doctrine_bounds() -> dict[str, Any]: return { "target_loss_cap": float(UK_LOCAL_TARGET_LOSS_CAP), @@ -1151,10 +2425,71 @@ def _validate_support_summary(support: pd.DataFrame) -> None: def _validate_cli_args(args: argparse.Namespace) -> None: + ledger_values = ( + args.ledger_facts, + args.ledger_facts_sha256, + args.ledger_manifest_sha256, + ) + if any(value is not None for value in ledger_values) and not all( + value is not None for value in ledger_values + ): + raise ValueError( + "--ledger-facts, --ledger-facts-sha256, and " + "--ledger-manifest-sha256 must be supplied together." + ) + if args.ledger_facts is not None and ( + args.input_sha256 is None or args.ladder_sha256 is None + ): + raise ValueError( + "the joint registry path requires --input-sha256 and --ladder-sha256." + ) + if args.release_candidate: + required_release = { + "--input-sha256": args.input_sha256, + "--ladder-sha256": args.ladder_sha256, + "--ledger-facts": args.ledger_facts, + "--ledger-facts-sha256": args.ledger_facts_sha256, + "--ledger-manifest-sha256": args.ledger_manifest_sha256, + } + missing_release = [ + name for name, value in required_release.items() if value is None + ] + if missing_release: + raise ValueError( + "--release-candidate requires pinned joint inputs: " + + ", ".join(missing_release) + ) + refused = [] + if args.target_weight_rule != "uniform": + refused.append("--target-weight-rule") + if args.measure_exclusions is not None: + refused.append("--measure-exclusions") + if args.skip_holdout: + refused.append("--skip-holdout") + if args.engine_blocks > 1: + refused.append("--engine-blocks > 1") + if args.sample_fraction != 1.0: + refused.append("--sample-fraction != 1.0") + if refused: + raise ValueError( + "--release-candidate refuses non-release settings: " + + ", ".join(refused) + ) if args.n_clones <= 0: raise ValueError("--n-clones must be positive.") if args.seed < 0: raise ValueError("--seed must be non-negative.") + if args.sample_fraction not in UK_SAMPLE_RUNG_TOKENS: + raise ValueError( + "--sample-fraction must be one of " + f"{sorted(UK_SAMPLE_RUNG_TOKENS)}, got {args.sample_fraction!r}." + ) + if args.sample_seed < 0: + raise ValueError("--sample-seed must be non-negative.") + if args.engine_blocks <= 0: + raise ValueError("--engine-blocks must be positive.") + if args.engine_blocks > 1 and args.engine_blocks != args.n_clones: + raise ValueError("--engine-blocks greater than one must equal --n-clones.") if args.source_year is not None and args.source_year <= 0: raise ValueError("--source-year must be positive.") if args.epochs <= 0: @@ -1165,8 +2500,15 @@ def _validate_cli_args(args: argparse.Namespace) -> None: raise ValueError("--expected-constituency-vintage must be non-empty.") -def _output_paths(out_dir: Path, *, source_year: int) -> dict[str, Path]: - dataset = out_dir / CANDIDATE_FILENAME_TEMPLATE.format(source_year=source_year) +def _output_paths( + out_dir: Path, + *, + source_year: int, + calibration_year: int, +) -> dict[str, Path]: + dataset = out_dir / CANDIDATE_FILENAME_TEMPLATE.format( + calibration_year=calibration_year + ) return { "dataset": dataset, "manifest": out_dir / MANIFEST_FILENAME, @@ -1175,7 +2517,8 @@ def _output_paths(out_dir: Path, *, source_year: int) -> dict[str, Path]: "past_cap": out_dir / PAST_CAP_FILENAME, "calibration_diagnostics": out_dir / CALIBRATION_DIAGNOSTICS_FILENAME, "local_gates": out_dir - / LOCAL_GATE_REPORT_FILENAME_TEMPLATE.format(source_year=source_year), + / LOCAL_GATE_REPORT_FILENAME_TEMPLATE.format(calibration_year=calibration_year), + "local_registry": out_dir / LOCAL_REGISTRY_FILENAME, } @@ -1215,6 +2558,7 @@ def _publish_staged_files( "support", "past_cap", "calibration_diagnostics", + "local_registry", "manifest", ) published: list[Path] = [] diff --git a/tools/extract_uk_local_incumbent_surface.py b/tools/extract_uk_local_incumbent_surface.py new file mode 100644 index 000000000..e89ca39b8 --- /dev/null +++ b/tools/extract_uk_local_incumbent_surface.py @@ -0,0 +1,266 @@ +#!/usr/bin/env python3 +"""Extract aggregate local weights and metric surfaces from an incumbent UK H5.""" + +from __future__ import annotations + +import argparse +import hashlib +import json +from collections.abc import Callable +from pathlib import Path +from typing import Any + +import h5py +import numpy as np +import pandas as pd + +from microcosm.build.uk_runtime import compute_household_metrics + +WEIGHTS_FILENAME = "incumbent_local_weights.csv" +METRICS_FILENAME = "incumbent_household_metrics.csv" +MANIFEST_FILENAME = "incumbent_local_surface_manifest.json" + + +def _sha256(path: Path) -> str: + digest = hashlib.sha256() + with path.open("rb") as stream: + for block in iter(lambda: stream.read(1024 * 1024), b""): + digest.update(block) + return digest.hexdigest() + + +def _artifact(path: Path) -> dict[str, object]: + return {"path": str(path), "sha256": _sha256(path), "bytes": path.stat().st_size} + + +def _decode_codes(values: Any) -> list[str]: + array = np.asarray(values).reshape(-1) + return [ + value.decode("utf-8") if isinstance(value, bytes) else str(value) + for value in array.tolist() + ] + + +def _roster_codes(path: Path | None) -> list[str] | None: + if path is None: + return None + frame = pd.read_csv(path) + if "code" not in frame.columns: + raise ValueError(f"{path}: roster CSV must contain a code column.") + codes = frame["code"].astype(str).tolist() + if not codes or len(set(codes)) != len(codes): + raise ValueError(f"{path}: roster codes must be non-empty and unique.") + return codes + + +def _h5_array_and_codes( + path: Path, + *, + period: int, +) -> tuple[np.ndarray, list[str] | None]: + with h5py.File(path, "r") as root: + name = str(period) + if name not in root or not isinstance(root[name], h5py.Dataset): + raise ValueError( + f"{path}: expected a two-dimensional {name!r} weight dataset." + ) + dataset = root[name] + if dataset.ndim != 2: + raise ValueError( + f"{path}: {name!r} weight dataset must be two-dimensional." + ) + values = np.asarray(dataset[...], dtype=np.float64) + codes = None + for owner in (dataset, root): + if "area_codes" in owner.attrs: + codes = _decode_codes(owner.attrs["area_codes"]) + break + if codes is None: + for candidate in ("area_codes", f"{name}_area_codes"): + if candidate in root and isinstance(root[candidate], h5py.Dataset): + codes = _decode_codes(root[candidate][...]) + break + return values, codes + + +def _load_weight_surface( + path: Path, + *, + household_ids: pd.Series, + roster_csv: Path | None, + period: int, +) -> pd.DataFrame: + roster = _roster_codes(roster_csv) + frame: pd.DataFrame | None = None + try: + with pd.HDFStore(path, mode="r") as store: + candidates = [] + for key in store.keys(): + value = store[key] + if isinstance(value, pd.DataFrame) and value.shape[1] >= 1: + candidates.append(value) + if len(candidates) == 1: + frame = candidates[0].copy() + except (KeyError, TypeError, ValueError): + frame = None + if frame is not None: + if "household_id" in frame.columns: + observed_ids = frame.pop("household_id") + if not observed_ids.reset_index(drop=True).equals( + household_ids.reset_index(drop=True) + ): + raise ValueError( + f"{path}: household_id does not align to incumbent H5." + ) + codes = [str(column) for column in frame.columns] + values = frame.to_numpy(dtype=np.float64) + else: + values, embedded_codes = _h5_array_and_codes(path, period=period) + codes = embedded_codes or roster + if codes is None: + raise ValueError( + f"{path}: weight H5 carries no area-code index; supply its roster CSV." + ) + if roster is not None and codes != roster: + raise ValueError(f"{path}: embedded area-code order does not match roster CSV.") + expected_wide = (len(codes), len(household_ids)) + expected_tabular = (len(household_ids), len(codes)) + if frame is None and values.shape == expected_wide: + values = values.T + if values.shape != expected_tabular: + raise ValueError( + f"{path}: weight shape {values.shape} does not match " + f"the incumbent layout {expected_wide} (areas x households)." + ) + if not np.isfinite(values).all() or (values < 0).any(): + raise ValueError(f"{path}: weights must be finite and non-negative.") + return pd.DataFrame(values, columns=codes) + + +def extract_incumbent_surface( + *, + incumbent_h5: Path, + constituency_weights_h5: Path, + local_authority_weights_h5: Path, + constituency_codes_csv: Path | None, + local_authority_codes_csv: Path | None, + period: int, + out_dir: Path, + microsimulation_factory: Callable[..., Any] | None = None, +) -> dict[str, object]: + """Write aggregate incumbent weights, metrics, and their pinned manifest.""" + + with pd.HDFStore(incumbent_h5, mode="r") as store: + if "/household" not in store.keys(): + raise ValueError(f"{incumbent_h5}: missing household table.") + household = store["household"] + if "household_id" not in household.columns: + raise ValueError(f"{incumbent_h5}: household table lacks household_id.") + household_ids = household["household_id"] + if household_ids.isna().any() or household_ids.duplicated().any(): + raise ValueError(f"{incumbent_h5}: household_id must be complete and unique.") + constituency = _load_weight_surface( + constituency_weights_h5, + household_ids=household_ids, + roster_csv=constituency_codes_csv, + period=period, + ) + local_authority = _load_weight_surface( + local_authority_weights_h5, + household_ids=household_ids, + roster_csv=local_authority_codes_csv, + period=period, + ) + overlap = sorted(set(constituency.columns) & set(local_authority.columns)) + if overlap: + raise ValueError(f"Area codes collide across incumbent grains: {overlap[:10]}.") + + if microsimulation_factory is None: + from policyengine_uk import Microsimulation + + microsimulation_factory = Microsimulation + simulation = microsimulation_factory(dataset=str(incumbent_h5)) + metric_frames = [ + compute_household_metrics( + simulation, + grain, + period=period, + household_ids=household_ids, + ) + for grain in ("constituency", "la") + ] + metrics = metric_frames[0].copy() + for frame in metric_frames[1:]: + shared = sorted(set(metrics.columns) & set(frame.columns)) + for column in shared: + if not np.array_equal( + metrics[column].to_numpy(), frame[column].to_numpy(), equal_nan=True + ): + raise ValueError( + f"Metric {column!r} differs between constituency and LA extraction." + ) + metrics = metrics.join(frame.drop(columns=shared), how="outer") + weights = pd.concat([constituency, local_authority], axis=1) + weights.insert(0, "household_id", household_ids.to_numpy()) + metrics = metrics.reset_index(drop=True) + metrics.insert(0, "household_id", household_ids.to_numpy()) + + out_dir.mkdir(parents=True, exist_ok=True) + weights_path = out_dir / WEIGHTS_FILENAME + metrics_path = out_dir / METRICS_FILENAME + manifest_path = out_dir / MANIFEST_FILENAME + weights.to_csv(weights_path, index=False) + metrics.to_csv(metrics_path, index=False) + manifest = { + "schema_version": 1, + "kind": "uk_local_incumbent_surface", + "period": int(period), + "households": len(household_ids), + "geography": { + "constituency_areas": len(constituency.columns), + "local_authority_areas": len(local_authority.columns), + }, + "inputs": { + "incumbent_h5": _artifact(incumbent_h5), + "constituency_weights_h5": _artifact(constituency_weights_h5), + "local_authority_weights_h5": _artifact(local_authority_weights_h5), + **( + {"constituency_codes_csv": _artifact(constituency_codes_csv)} + if constituency_codes_csv is not None + else {} + ), + **( + {"local_authority_codes_csv": _artifact(local_authority_codes_csv)} + if local_authority_codes_csv is not None + else {} + ), + }, + "outputs": { + "weights": _artifact(weights_path), + "metrics": _artifact(metrics_path), + }, + } + manifest_path.write_text(json.dumps(manifest, indent=2) + "\n", encoding="utf-8") + return manifest + + +def _parse_args(argv: list[str] | None = None) -> argparse.Namespace: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--incumbent-h5", type=Path, required=True) + parser.add_argument("--constituency-weights-h5", type=Path, required=True) + parser.add_argument("--local-authority-weights-h5", type=Path, required=True) + parser.add_argument("--constituency-codes-csv", type=Path) + parser.add_argument("--local-authority-codes-csv", type=Path) + parser.add_argument("--period", type=int, required=True) + parser.add_argument("--out-dir", type=Path, required=True) + return parser.parse_args(argv) + + +def main(argv: list[str] | None = None) -> int: + args = _parse_args(argv) + extract_incumbent_surface(**vars(args)) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/tools/score_uk_local_candidate.py b/tools/score_uk_local_candidate.py index 2729a9563..beb278116 100644 --- a/tools/score_uk_local_candidate.py +++ b/tools/score_uk_local_candidate.py @@ -27,7 +27,7 @@ relative_error_loss, ) -UK_LOCAL_ACTIVE_REFERENCE_COUNT = 17_077 +UK_LOCAL_ACTIVE_REFERENCE_COUNT = 19_618 UK_LOCAL_SCORE_TARGET_PERIOD = 2025 #: The incumbent is scored from published weights, never re-solved, so no #: incumbent holdout exists to place beside the candidate's rotation. @@ -61,7 +61,7 @@ def _verify_artifact(path: str | Path, expected_sha256: str) -> dict[str, object def _candidate_estimates( diagnostics: Mapping[str, object], registry: TargetRegistry, -) -> dict[str, float]: +) -> tuple[dict[str, float], dict[str, object]]: if diagnostics.get("schema_version") != CALIBRATION_DIAGNOSTICS_SCHEMA_VERSION: raise ValueError("UK local scoring requires schema-v6 candidate diagnostics.") rows = diagnostics.get("targets") @@ -83,14 +83,17 @@ def _candidate_estimates( raise ValueError("candidate diagnostics contain invalid target estimates.") estimates[name] = float(raw) expected = {spec.to_target().row_name for spec in registry.specs} - if set(estimates) != expected: - missing = sorted(expected - set(estimates)) - extra = sorted(set(estimates) - expected) + missing = sorted(expected - set(estimates)) + if missing: raise ValueError( - "candidate diagnostics must exactly cover the frozen local register; " - f"missing={missing[:10]}, extra={extra[:10]}." + "candidate diagnostics must cover every frozen local register row; " + f"missing={missing[:10]}." ) - return estimates + extra = sorted(set(estimates) - expected) + return ( + {name: estimates[name] for name in expected}, + {"count": len(extra), "rows": extra}, + ) def _candidate_holdout(diagnostics: Mapping[str, object]) -> dict[str, object]: @@ -334,7 +337,10 @@ def score_uk_local_candidate( f"mismatches={wrong_period[:10]}." ) holdout = _candidate_holdout(candidate_diagnostics) - candidate = _candidate_estimates(candidate_diagnostics, target_registry) + candidate, rows_outside_register = _candidate_estimates( + candidate_diagnostics, + target_registry, + ) incumbent = _incumbent_estimates( target_registry, incumbent_weights, @@ -405,6 +411,7 @@ def score_uk_local_candidate( "incumbent_holdout_loss": None, "candidate_target_wins": candidate_wins, "incumbent_target_wins": incumbent_wins, + "rows_outside_register": rows_outside_register, "holdout_basis": holdout["basis"], "incumbent_holdout_basis": UK_LOCAL_INCUMBENT_HOLDOUT_BASIS, "candidate_holdout": holdout,